mirror of
https://github.com/evennia/evennia.git
synced 2026-04-07 00:45:22 +02:00
Change to MyST parser
This commit is contained in:
parent
8d5b48d4cc
commit
b69d056ef2
443 changed files with 4925 additions and 3524 deletions
|
|
@ -3,7 +3,7 @@
|
|||
The documents in this section aims to teach how to use Evennia in a tutorial or
|
||||
a step-by-step way. They often give hints on about solving a problem or implementing
|
||||
a particular feature or concept. They will often refer to the
|
||||
[components](../Components/Components-Overview) or [concepts](../Concepts/Concepts-Overview)
|
||||
[components](../Components/Components-Overview.md) or [concepts](../Concepts/Concepts-Overview.md)
|
||||
docs for those that want to dive deeper.
|
||||
|
||||
## The Starting Tutorial
|
||||
|
|
@ -14,92 +14,92 @@ in mind for your own game, this will give you a good start.
|
|||
|
||||
### Part 1: What we have
|
||||
|
||||
1. [Introduction & Overview](Starting/Part1/Starting-Part1)
|
||||
1. [Building stuff](Starting/Part1/Building-Quickstart)
|
||||
1. [The Tutorial World](Starting/Part1/Tutorial-World-Introduction)
|
||||
1. [Python basics](Starting/Part1/Python-basic-introduction)
|
||||
1. [Game dir overview](Starting/Part1/Gamedir-Overview)
|
||||
1. [Python classes and objects](Starting/Part1/Python-classes-and-objects)
|
||||
1. [Accessing the Evennia library](Starting/Part1/Evennia-Library-Overview)
|
||||
1. [Typeclasses - Persistent objects](Starting/Part1/Learning-Typeclasses)
|
||||
1. [Making our first own commands](Starting/Part1/Adding-Commands)
|
||||
1. [Parsing and replacing default Commands](Starting/Part1/More-on-Commands)
|
||||
1. [Creating things](Starting/Part1/Creating-Things)
|
||||
1. [Searching for things](Starting/Part1/Searching-Things)
|
||||
1. [Advanced searching with Django queries](Starting/Part1/Django-queries)
|
||||
1. [Introduction & Overview](Starting/Part1/Starting-Part1.md)
|
||||
1. [Building stuff](Starting/Part1/Building-Quickstart.md)
|
||||
1. [The Tutorial World](Starting/Part1/Tutorial-World-Introduction.md)
|
||||
1. [Python basics](Starting/Part1/Python-basic-introduction.md)
|
||||
1. [Game dir overview](Starting/Part1/Gamedir-Overview.md)
|
||||
1. [Python classes and objects](Starting/Part1/Python-classes-and-objects.md)
|
||||
1. [Accessing the Evennia library](Starting/Part1/Evennia-Library-Overview.md)
|
||||
1. [Typeclasses - Persistent objects](Starting/Part1/Learning-Typeclasses.md)
|
||||
1. [Making our first own commands](Starting/Part1/Adding-Commands.md)
|
||||
1. [Parsing and replacing default Commands](Starting/Part1/More-on-Commands.md)
|
||||
1. [Creating things](Starting/Part1/Creating-Things.md)
|
||||
1. [Searching for things](Starting/Part1/Searching-Things.md)
|
||||
1. [Advanced searching with Django queries](Starting/Part1/Django-queries.md)
|
||||
|
||||
### Part 2: What we want
|
||||
|
||||
1. [Introduction & Overview](Starting/Part2/Starting-Part2)
|
||||
1. [On planning a game](Starting/Part2/Game-Planning)
|
||||
1. [Planning to use some useful Contribs](Starting/Part2/Planning-Some-Useful-Contribs)
|
||||
1. [Introduction & Overview](Starting/Part2/Starting-Part2.md)
|
||||
1. [On planning a game](Starting/Part2/Game-Planning.md)
|
||||
1. [Planning to use some useful Contribs](Starting/Part2/Planning-Some-Useful-Contribs.md)
|
||||
|
||||
### Part3: How we get there
|
||||
|
||||
1. [Introduction & Overview](Starting/Part3/Starting-Part3)
|
||||
1. [Making a custom Character](Starting/Part3/Implementing-a-game-rule-system)
|
||||
1. [Character generation](../Unimplemented)
|
||||
1. [Resolving skills and challenges](../Unimplemented)
|
||||
1. [NPCs and mobiles](./Coordinates)
|
||||
1. [Quests and Zones](../Unimplemented)
|
||||
1. [A Combat system](../Unimplemented)
|
||||
1. [Introduction & Overview](Starting/Part3/Starting-Part3.md)
|
||||
1. [Making a custom Character](Starting/Part3/Implementing-a-game-rule-system.md)
|
||||
1. [Character generation](../Unimplemented.md)
|
||||
1. [Resolving skills and challenges](../Unimplemented.md)
|
||||
1. [NPCs and mobiles](./Coordinates.md)
|
||||
1. [Quests and Zones](../Unimplemented.md)
|
||||
1. [A Combat system](../Unimplemented.md)
|
||||
|
||||
### Part 4: Using what we created
|
||||
|
||||
1. [Introduction & Overview](Starting/Part4/Starting-Part4)
|
||||
1. [Building the tech demo](../Unimplemented)
|
||||
1. [Creating a game world](../Unimplemented)
|
||||
1. [Introduction & Overview](Starting/Part4/Starting-Part4.md)
|
||||
1. [Building the tech demo](../Unimplemented.md)
|
||||
1. [Creating a game world](../Unimplemented.md)
|
||||
|
||||
### Part 5: Showing the world
|
||||
|
||||
1. [Introduction & Overview](Starting/Part5/Starting-Part5)
|
||||
1. [Add a web page](Starting/Part5/Add-a-simple-new-web-page)
|
||||
1. [More on adding web features](Starting/Part5/Web-Tutorial)
|
||||
1. [Taking your game online](../Unimplemented)
|
||||
1. [Next steps](../Unimplemented)
|
||||
1. [Introduction & Overview](Starting/Part5/Starting-Part5.md)
|
||||
1. [Add a web page](Starting/Part5/Add-a-simple-new-web-page.md)
|
||||
1. [More on adding web features](Starting/Part5/Web-Tutorial.md)
|
||||
1. [Taking your game online](../Unimplemented.md)
|
||||
1. [Next steps](../Unimplemented.md)
|
||||
|
||||
|
||||
## FAQs
|
||||
|
||||
- [Coding FAQ](./Coding-FAQ)
|
||||
- [Coding FAQ](./Coding-FAQ.md)
|
||||
|
||||
## Howto's
|
||||
|
||||
- [Giving Exits a default error](./Default-Exit-Errors)
|
||||
- [Add a command prompt](./Command-Prompt)
|
||||
- [Don't allow spamming commands](./Command-Cooldown)
|
||||
- [Commands that take time](./Command-Duration)
|
||||
- [Configuring color](./Manually-Configuring-Color)
|
||||
- [Tweet game stats](./Tutorial-Tweeting-Game-Stats)
|
||||
- [Giving Exits a default error](./Default-Exit-Errors.md)
|
||||
- [Add a command prompt](./Command-Prompt.md)
|
||||
- [Don't allow spamming commands](./Command-Cooldown.md)
|
||||
- [Commands that take time](./Command-Duration.md)
|
||||
- [Configuring color](./Manually-Configuring-Color.md)
|
||||
- [Tweet game stats](./Tutorial-Tweeting-Game-Stats.md)
|
||||
|
||||
## Mobs and NPCs
|
||||
|
||||
- [NPCs that listen to you](./Tutorial-NPCs-listening)
|
||||
- [Mobs that attack you](./Tutorial-Aggressive-NPCs)
|
||||
- [Shopkeepers](./NPC-shop-Tutorial)
|
||||
- [NPCs that listen to you](./Tutorial-NPCs-listening.md)
|
||||
- [Mobs that attack you](./Tutorial-Aggressive-NPCs.md)
|
||||
- [Shopkeepers](./NPC-shop-Tutorial.md)
|
||||
|
||||
## Vehicles
|
||||
|
||||
- [Building a mech](./Building-a-mech-tutorial)
|
||||
- [Building a train](./Tutorial-Vehicles)
|
||||
- [Building a mech](./Building-a-mech-tutorial.md)
|
||||
- [Building a train](./Tutorial-Vehicles.md)
|
||||
|
||||
## Systems
|
||||
|
||||
- [Understanding In-game time](./Gametime-Tutorial)
|
||||
- [Understanding the Help system](./Help-System-Tutorial)
|
||||
- [Adding mass to objects](./Mass-and-weight-for-objects)
|
||||
- [Add weather](./Weather-Tutorial)
|
||||
- [Understanding In-game time](./Gametime-Tutorial.md)
|
||||
- [Understanding the Help system](./Help-System-Tutorial.md)
|
||||
- [Adding mass to objects](./Mass-and-weight-for-objects.md)
|
||||
- [Add weather](./Weather-Tutorial.md)
|
||||
|
||||
## Web-related tutorials
|
||||
|
||||
- [Add a wiki](./Add-a-wiki-on-your-website)
|
||||
- [A web-based character generation](./Web-Character-Generation)
|
||||
- [View Character on website](./Web-Character-View-Tutorial)
|
||||
- [Add a wiki](./Add-a-wiki-on-your-website.md)
|
||||
- [A web-based character generation](./Web-Character-Generation.md)
|
||||
- [View Character on website](./Web-Character-View-Tutorial.md)
|
||||
|
||||
## Deep-dives
|
||||
|
||||
- [Parsing command inputs](./Parsing-commands-tutorial)
|
||||
- [Understanding color-tags](./Understanding-Color-Tags)
|
||||
- [Play paper&pen RPGs online with Evennia](./Evennia-for-roleplaying-sessions)
|
||||
- [Evennia for Diku Users](./Evennia-for-Diku-Users)
|
||||
- [Evennia for MUSH-Users](./Evennia-for-MUSH-Users)
|
||||
- [Parsing command inputs](./Parsing-commands-tutorial.md)
|
||||
- [Understanding color-tags](./Understanding-Color-Tags.md)
|
||||
- [Play paper&pen RPGs online with Evennia](./Evennia-for-roleplaying-sessions.md)
|
||||
- [Evennia for Diku Users](./Evennia-for-Diku-Users.md)
|
||||
- [Evennia for MUSH-Users](./Evennia-for-MUSH-Users.md)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue