Made a lot of progress on the search tutorial

This commit is contained in:
Griatch 2020-07-08 00:14:37 +02:00
parent 3f1a3612e4
commit c54625b305
15 changed files with 786 additions and 636 deletions

View file

@ -1,6 +1,6 @@
# Python Classes and objects
[prev lesson](Gamedir-Overview) | [next lesson](Learning-Typeclasses)
[prev lesson](Gamedir-Overview) | [next lesson](Evennia-Library-Overview)
We have now learned how to run some simple Python code from inside (and outside) your game server.
We have also taken a look at what our game dir looks and what is where. Now we'll start to use it.
@ -409,8 +409,7 @@ We have created our first dragons from classes. We have learned a little about h
into an _object_. We have seen some examples of _inheritance_ and we tested to _override_ a method in the parent
with one in the child class. We also used `super()` to good effect.
But so far our dragons are gone as soon as we `restart` the server or `quit()` the Python interpreter. In the
next lesson we'll get up close and personal with Smaug.
We have used pretty much raw Python so far. In the coming lessons we'll start to look at the extra bits that Evennia
provides. But first we need to learn just where to find everything.
[prev lesson](Gamedir-Overview) | [next lesson](Learning-Typeclasses)
[prev lesson](Gamedir-Overview) | [next lesson](Evennia-Library-Overview)