diff --git a/apps/config/sql/commandalias.sql b/apps/config/sql/commandalias.sql index 6643bd3482..ebc7b10d69 100644 --- a/apps/config/sql/commandalias.sql +++ b/apps/config/sql/commandalias.sql @@ -1,9 +1,9 @@ -INSERT INTO "config_commandalias" VALUES(1,'l','look'); -INSERT INTO "config_commandalias" VALUES(2,'ex','examine'); -INSERT INTO "config_commandalias" VALUES(3,'@dest','@destroy'); -INSERT INTO "config_commandalias" VALUES(4,'@nuke','@destroy'); -INSERT INTO "config_commandalias" VALUES(5,'sa','say'); -INSERT INTO "config_commandalias" VALUES(6,'@tel','@teleport'); -INSERT INTO "config_commandalias" VALUES(7,'i','inventory'); -INSERT INTO "config_commandalias" VALUES(8,'inv','inventory'); -INSERT INTO "config_commandalias" VALUES(9,'@desc','@describe'); +INSERT INTO config_commandalias VALUES(1,'l','look'); +INSERT INTO config_commandalias VALUES(2,'ex','examine'); +INSERT INTO config_commandalias VALUES(3,'@dest','@destroy'); +INSERT INTO config_commandalias VALUES(4,'@nuke','@destroy'); +INSERT INTO config_commandalias VALUES(5,'sa','say'); +INSERT INTO config_commandalias VALUES(6,'@tel','@teleport'); +INSERT INTO config_commandalias VALUES(7,'i','inventory'); +INSERT INTO config_commandalias VALUES(8,'inv','inventory'); +INSERT INTO config_commandalias VALUES(9,'@desc','@describe'); diff --git a/apps/config/sql/configvalue.sql b/apps/config/sql/configvalue.sql index fa5d8fdc96..b716cabc70 100644 --- a/apps/config/sql/configvalue.sql +++ b/apps/config/sql/configvalue.sql @@ -1,7 +1,7 @@ -INSERT INTO "config_configvalue" VALUES(0,'site_name','Evennia Test Site'); -INSERT INTO "config_configvalue" VALUES(1,'site_port','4000'); -INSERT INTO "config_configvalue" VALUES(2,'player_dbnum_start','2'); -INSERT INTO "config_configvalue" VALUES(3,'money_name_plural','Credits'); -INSERT INTO "config_configvalue" VALUES(4,'money_name_singular','Credit'); -INSERT INTO "config_configvalue" VALUES(5,'game_firstrun','1'); -INSERT INTO "config_configvalue" VALUES(6,'idle_timeout','1800'); +INSERT INTO config_configvalue VALUES(0,'site_name','Evennia Test Site'); +INSERT INTO config_configvalue VALUES(1,'site_port','4000'); +INSERT INTO config_configvalue VALUES(2,'player_dbnum_start','2'); +INSERT INTO config_configvalue VALUES(3,'money_name_plural','Credits'); +INSERT INTO config_configvalue VALUES(4,'money_name_singular','Credit'); +INSERT INTO config_configvalue VALUES(5,'game_firstrun','1'); +INSERT INTO config_configvalue VALUES(6,'idle_timeout','1800'); diff --git a/apps/helpsys/sql/helpentry.sql b/apps/helpsys/sql/helpentry.sql index 95cbdcb991..5081a9021e 100644 --- a/apps/helpsys/sql/helpentry.sql +++ b/apps/helpsys/sql/helpentry.sql @@ -1,17 +1,17 @@ -INSERT INTO "helpsys_helpentry" VALUES(1,'Help Index','This game has yet to customize its help index, so for now you may browse the generic codebase help files. +INSERT INTO helpsys_helpentry VALUES(1,'Help Index','This game has yet to customize its help index, so for now you may browse the generic codebase help files. Topics ------ NEWBIE %%t%%t Getting started (for new players). COMMANDS %%t How to get help with commands. CREDITS %%t Codebase credits.',0); -INSERT INTO "helpsys_helpentry" VALUES(2,'Credits','Evennia is a product of a small community of developers, all working towards the continual improvement of the codebase. The following people have made major contributions with the end result being what you are now playing. +INSERT INTO helpsys_helpentry VALUES(2,'Credits','Evennia is a product of a small community of developers, all working towards the continual improvement of the codebase. The following people have made major contributions with the end result being what you are now playing. "Kelvin" (Greg Taylor) - Lead developer and original author.',0); -INSERT INTO "helpsys_helpentry" VALUES(3,'Commands','Commands in Evennia are generally organized into one of two categories: %%cgPublic%%cn or %%cyPrivileged%%cn commands. +INSERT INTO helpsys_helpentry VALUES(3,'Commands','Commands in Evennia are generally organized into one of two categories: %%cgPublic%%cn or %%cyPrivileged%%cn commands. %%cgPublic%%cn commands are more or less available to everyone. None of these commands are prefixed with anything, they are typical, every-day commands like %%chlook%%cn, %%chsay%%cn, and %%chget%%cn. %%cyPrivileged%%cn command availability is largely dependent on the privileges and powers bestowed on you by the staff. Privileged commands are generally building/administration related and aren''t of general interest to players. These commands are all pre-fixed by a ''%%ch@%%cn'' character. -To see a list of all commands, use %%ch@list commands%%cn. If you''d like to learn more about any individual command, you may do so by typing %%chhelp %%cn, where is the name of the command (without the <>''s).',0); \ No newline at end of file +To see a list of all commands, use %%ch@list commands%%cn. If you''d like to learn more about any individual command, you may do so by typing %%chhelp %%cn, where is the name of the command (without the <>''s).',0); diff --git a/apps/objects/sql/object.sql b/apps/objects/sql/object.sql index a616c3f2c8..3669db8ba7 100644 --- a/apps/objects/sql/object.sql +++ b/apps/objects/sql/object.sql @@ -1,3 +1,3 @@ -INSERT INTO "objects_object" VALUES(1,'Wizard','Wizard',1,0,2,1,'',2,'','CONNECTED','2007-04-25'); -INSERT INTO "objects_object" VALUES(2,'Limbo','Limbo',1,NULL,NULL,2,'Welcome to your new Evennia-based game. From here you are ready to begin development. If you should need help or would like to participate in community discussions, visit http://evennia.com.',NULL,'','','2007-04-25'); -INSERT INTO "objects_commchannel" VALUES(1,'Public','Public',1,'Public Discussion'); \ No newline at end of file +INSERT INTO objects_object VALUES(1,'Wizard','Wizard',1,0,2,1,'',2,'','CONNECTED','2007-04-25'); +INSERT INTO objects_object VALUES(2,'Limbo','Limbo',1,NULL,NULL,2,'Welcome to your new Evennia-based game. From here you are ready to begin development. If you should need help or would like to participate in community discussions, visit http://evennia.com.',NULL,'','','2007-04-25'); +INSERT INTO objects_commchannel VALUES(1,'Public','Public',1,'Public Discussion');