Commit graph

33 commits

Author SHA1 Message Date
Griatch
b2f45a7cf4 Fixed an inconsistent API name. (db_serverconfs -> db_serverconfigs) 2012-03-25 18:21:22 +02:00
Griatch
93a1646ea7 Moved contribs to use the new API. Added the system command keys to a property syscmdkeys, for easy access from ev.py. 2012-03-25 18:11:14 +02:00
Griatch
d3ea942ac8 Fixed tutorial_world to use ev API. 2012-03-25 17:39:45 +02:00
Griatch
abb5384dd1 Removed strange echo of all players (including yourself) in the tutorial's hanging bridge room. 2012-03-13 22:15:03 +01:00
Griatch
7818ca077a Fixed some spurious bugs. 2012-02-29 21:58:08 +01:00
Griatch
7e146eae11 Added some fixes to tutorial world. 2012-02-29 19:29:56 +01:00
Griatch
a12f7b9c32 Added a desc to the tutorial entrance. 2012-02-29 18:21:39 +01:00
Griatch
9660dd6656 Added caching to some more object properties. 2012-02-26 12:43:16 +01:00
Griatch
001a39c3b9 Minor fixes in tutorial_world build. 2012-02-21 08:11:16 +01:00
Griatch
641d829154 Added inlineCallback operator for cmdhandler, allowing the system to yield more often. 2012-02-20 21:40:28 +01:00
Griatch
c4f2c493d9 Updated ReST docs, fixed some things in Swedish translation. 2012-02-19 10:49:59 +01:00
Griatch
11e61255da Went through the Tutorial_world batch file with a spell checker and cleaned up the build code a bit. 2012-02-18 21:55:09 +01:00
Griatch
a32aebaa0e OBS- need to run migrations! Refactored attributes to use a slightly different internal storage format for faster access. Also set up caching of all attribute data, so subsequent reads of an attribute will not hit the database anymore, and writes will re-cache. 2012-02-14 23:40:16 +01:00
Griatch
1d40f688e5 Added the @ban and @unban commands to the default command sets, allowing an admin to filter access from users without outright deleting their accounts. The ban list is stored in the database, but the checking is not hard-coded in the server/portal, but done in the normal login command(s), meaning it can be customized easily. Also contrib/menu_login has been updated to check for banned connections. 2012-01-27 23:53:03 +01:00
Griatch
1f3de48182 Removing some of the instruction of contrib.chargen which might, correctly written, cause problems if one misses a step. 2011-11-14 19:16:41 +01:00
Griatch
71dddf008a Updated contrib README. 2011-11-14 11:51:32 +01:00
Griatch
88c1b0601f Added a minor fix in the instructions to chargen. 2011-11-13 18:58:10 +01:00
Griatch
ffb73cdb31 Fixing the documentation for the latest contrib models. 2011-11-07 16:49:02 +01:00
Griatch
3e8b43d222 More fixes and cleanup in wake of ic/ooc changes. 2011-11-06 23:55:24 +01:00
Griatch
86f76d0d08 Contrib: Added chargen module, showing a simple example of creating a character from inside the game. 2011-11-06 22:28:24 +01:00
Griatch
703accdd60 Added an error_check_python_modules function to evennia.py. This basically imports a host of critical modules and quits with tracebacks if there are problems. This catches pure python-syntax errors (i.e. cases where the source-file itself is malformed), something which is hard to properly handle in the running server (where there's also an issue as to how to best report it). Best they fail out already at an early stage. 2011-11-06 21:32:00 +01:00
Griatch
e379816866 Fixed some bugs, added an example connection screen for the menu-login system. 2011-11-06 19:16:34 +01:00
Griatch
c4d353ee01 Contrib: Added the contrib/menu_login module. 2011-11-06 18:54:08 +01:00
Griatch
55f6f5b713 Contrib: Added a new, alternative login system, using menus. Also edited the ways unlogged commands are started by the engine, by using a standardized system command name (it does not need to be "look" anymore). 2011-11-06 18:53:10 +01:00
Griatch
2b2d27ed39 Changed the way unloggedin commands work. Rather than the cmdhander having a special state for unlogged-in commands, the session itself simply stores the cmdset from settings.CMDSET_UNLOGGEDIN. Clean and efficient and also gives a lot more freedom for creating custom login mechanisms (notably it opens the door to using menu systems). 2011-11-06 17:38:29 +01:00
Griatch
b6303808ec Added a simple quell command to contrib/ for showing how to use a command to launch other commands (in this case with a lower permission than you normally do (including bypassing superuser status). 2011-11-03 18:23:45 +01:00
Sergi Reyner
f954e99822 Fixed the tutorial_world Mob so it moves and announces its arrival. 2011-09-19 19:08:11 +01:00
Griatch
f13e8cdf7c Trunk: Merged griatch-branch. This implements a new reload mechanism - splitting Evennia into two processes: Server and Portal with different tasks. Also cleans and fixes several bugs in script systems as well as introduces i18n (courtesy of raydeejay). 2011-09-03 10:22:19 +00:00
Griatch
6cb2b8b745 Working on cleaning some strange behavior when trying to submitting faulty typeclasses to script system. Also fixing bugs here and there. 2011-07-03 21:01:06 +00:00
Griatch
919800eb12 Tutorialworld: Made mob somewhat less deadly. 2011-06-28 18:48:14 +00:00
Griatch
a0d391900c Tutorial_world: forgot to lock antechamber against mob entering. 2011-06-27 07:35:14 +00:00
Griatch
b2b743b0aa Added TutorialWorld - a small, but complete single-player quest area showing off some of Evennia's features. You can find it in contrib/tutorial_world.
Build with: @batchcommand contrib.tutorial_world.build
I have tested it, but there are most likely still bugs, so report all you find (along with possible suggestions for improvements) to the bugtracker/mailing list.
2011-06-26 22:41:14 +00:00
Griatch
b9c1921a0b Added a new 'contrib' folder for optional code snippets not suitable for the server core. Added contrib/menusystem for implementing a multi-choice menu system. Added contrib/lineeditor - a powerful line editor with commands mimicking VI. Also added an example NPC class using the menu system to allow for a conversation. As part of creating these contributions, lots of bugs were found and fixed. A new and more powerful cmdparser was intruduced as a result - this one is much easier to understand than the old one, while being more efficient and versatile. All testsuites were updated. Also: Resolves issue 165. 2011-05-12 21:51:11 +00:00