Add warning about starting without main script.

This commit is contained in:
Griatch 2017-05-06 14:42:52 +02:00
parent 1356e569b5
commit 4f76d255fa

View file

@ -62,7 +62,7 @@ When you pick up this object you should see something like:
Being in a separate contrib, the event system isn't installed by default. You need to do it
manually, following these steps:
1. Launch the main script:
1. Launch the main script (important!):
```@py evennia.create_script("evennia.contrib.events.scripts.EventHandler")```
2. Set the permissions (optional):
- `EVENTS_WITH_VALIDATION`: a group that can edit callbacks, but will need approval (default to
@ -81,6 +81,10 @@ manually, following these steps:
The following sections describe in details each step of the installation.
> Note: If you were to start the game without having started the main script (such as when
resetting your database) you will most likely face a traceback when logging in, telling you
that a 'callback' property is not defined. After performing step `1` the error will go away.
### Starting the event script
To start the event script, you only need a single command, using `@py`.