Tweak tutorial-start name

This commit is contained in:
Griatch 2020-06-19 23:25:55 +02:00
parent 5dc31f834a
commit 47d168219c
5 changed files with 17 additions and 13 deletions

View file

@ -14,7 +14,7 @@ in mind for your own game, this will give you a good start.
### Part 1: What we have
- [Introduction & Overview](Starting/Starting-Overview)
- [Introduction & Overview](Starting/Starting-Introduction)
- [Building stuff](Starting/Building-Quickstart)
- [Python basics](Starting/Python-basic-introduction)
- [Python classes](Starting/Python-basic-tutorial-part-two)

View file

@ -24,18 +24,18 @@ systems.
## Initialize a new game
Use `cd` to enter a folder where you want to do your game development. Here (and in
the rest of this documentation we call this folder `mygame`, but you should of course
name your game whatever you like):
the rest of the Evennia documentation) we call this folder `mygame`, but you should of course
name your game whatever you like:
evennia --init mygame
This will create a new folder `mygame` (or whatever you chose) in your current location. This
contains
contains empty templates and all the default settings needed to start the server.
## Start the new game
`cd` into your game folder (`mygame` above). Next run
`cd` into your game folder (`mygame` in our case). Next, run
evennia migrate
@ -44,7 +44,7 @@ ever want to start from a fresh database, just delete this file and re-run `even
evennia start
Fill in your user-name and password. This will be the "god user" or "superuser" in-game. The email is optional.
Set your user-name and password when prompted. This will be the "god user" or "superuser" in-game. The email is optional.
If all went well, the server is now up and running. Point a legacy MUD/telnet client to `localhost:4000` or
a web browser at [http://localhost:4001](http://localhost:4001) to play your new (if empty) game!
@ -54,7 +54,7 @@ a web browser at [http://localhost:4001](http://localhost:4001) to play your new
## See server logs
This will echo the server logs to the terminal as they come in
This will echol the server logs to the terminal as they come in:
evennia --log
@ -63,24 +63,27 @@ or
evennia -l
You can also attach `--log` to other `evennia` commands to start the log right away, such as
You can also start logging immediately when running `evennia` commands, such as
evennia start -l
To exit the log view, enter `Ctrl-C` (`Cmd-C` for Mac). This will not affect the server.
## Restarting and stopping
This will restart the server without disconnecting any connected players:
You can restart the server without disconnecting any connected players:
evennia restart
Do a full stop and restart (will disconnect everyone):
To do a full stop and restart (will disconnect everyone):
evennia reboot
Stop the server (will need to use `start` to activate it again):
Full stop of the server (will need to use `start` to activate it again):
evennia stop

View file

@ -16,7 +16,7 @@
This is the manual of [Evennia](http://www.evennia.com), the open source Python
`MU*` creation system.
- [Evennia Introduction](Evennia-Overview)
- [Evennia Introduction](Evennia-Introduction)
- [Install & Setup Quickstart](Setup/Setup-Quickstart)
- [Begin the starting tutorial](Howto/Starting/Starting-Introduction)
- [How to get help](How-To-Get-And-Give-Help)

View file

@ -1,5 +1,6 @@
# Toc
- [Coding/Coding Overview](Coding/Coding-Overview)
- [Coding/Continuous Integration](Coding/Continuous-Integration)
- [Coding/Debugging](Coding/Debugging)
- [Coding/Directory Overview](Coding/Directory-Overview)
@ -104,7 +105,7 @@
- [Howto/Starting/Parsing command arguments, theory and best practices](Howto/Starting/Parsing-command-arguments,-theory-and-best-practices)
- [Howto/Starting/Python basic introduction](Howto/Starting/Python-basic-introduction)
- [Howto/Starting/Python basic tutorial part two](Howto/Starting/Python-basic-tutorial-part-two)
- [Howto/Starting/Starting Overview](Howto/Starting/Starting-Overview)
- [Howto/Starting/Starting Introduction](Howto/Starting/Starting-Introduction)
- [Howto/Starting/Turn based Combat System](Howto/Starting/Turn-based-Combat-System)
- [Howto/Starting/Tutorial Searching For Objects](Howto/Starting/Tutorial-Searching-For-Objects)
- [Howto/Starting/Tutorial for basic MUSH like game](Howto/Starting/Tutorial-for-basic-MUSH-like-game)