mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 23:47:16 +02:00
Possible MySQL fix.
This commit is contained in:
parent
972604f156
commit
f7d58f16ae
4 changed files with 23 additions and 23 deletions
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -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 <topic>%%cn, where <topic> is the name of the command (without the <>''s).',0);
|
||||
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 <topic>%%cn, where <topic> is the name of the command (without the <>''s).',0);
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue