2022-11-15 20:46:50 +01:00
# Contribs
2022-11-23 21:15:23 +01:00
```{sidebar} More contributions
Additional Evennia code snippets and contributions can be found
in the [Community Contribs & Snippets][forum] forum.
```
2022-11-15 20:46:50 +01:00
_Contribs_ are optional code snippets and systems contributed by
the Evennia community. They vary in size and complexity and
may be more specific about game types and styles than 'core' Evennia.
2022-12-01 22:53:02 +01:00
This page is auto-generated and summarizes all **47** contribs currently included
2022-11-23 21:15:23 +01:00
with the Evennia distribution.
2022-11-15 20:46:50 +01:00
All contrib categories are imported from `evennia.contrib` , such as
from evennia.contrib.base_systems import building_menu
Each contrib contains installation instructions for how to integrate it
with your other code. If you want to tweak the code of a contrib, just
copy its entire folder to your game directory and modify/use it from there.
2022-11-25 19:47:32 +01:00
If you want to add a contrib, see [the contrib guidelines ](./Contribs-Guidelines.md )!
2022-11-15 20:46:50 +01:00
2022-11-23 21:15:23 +01:00
[forum]: https://github.com/evennia/evennia/discussions/categories/community-contribs-snippets
## Index
| | | | | | | |
|---|---|---|---|---|---|---|
| [base_systems ](#base_systems ) | [full_systems ](#full_systems ) | [game_systems ](#game_systems ) | [grid ](#grid ) | [rpg ](#rpg ) | [tutorials ](#tutorials ) | [utils ](#utils ) |
| | | | | |
|---|---|---|---|---|
| [auditing ](#auditing ) | [awsstorage ](#awsstorage ) | [barter ](#barter ) | [batchprocessor ](#batchprocessor ) | [bodyfunctions ](#bodyfunctions ) |
| [buffs ](#buffs ) | [building_menu ](#building_menu ) | [character_creator ](#character_creator ) | [clothing ](#clothing ) | [color_markups ](#color_markups ) |
| [components ](#components ) | [cooldowns ](#cooldowns ) | [crafting ](#crafting ) | [custom_gametime ](#custom_gametime ) | [dice ](#dice ) |
| [email_login ](#email_login ) | [evadventure ](#evadventure ) | [evscaperoom ](#evscaperoom ) | [extended_room ](#extended_room ) | [fieldfill ](#fieldfill ) |
2022-12-01 22:53:02 +01:00
| [gendersub ](#gendersub ) | [git_integration ](#git_integration ) | [godotwebsocket ](#godotwebsocket ) | [health_bar ](#health_bar ) | [ingame_map_display ](#ingame_map_display ) |
| [ingame_python ](#ingame_python ) | [mail ](#mail ) | [mapbuilder ](#mapbuilder ) | [menu_login ](#menu_login ) | [mirror ](#mirror ) |
| [multidescer ](#multidescer ) | [mux_comms_cmds ](#mux_comms_cmds ) | [name_generator ](#name_generator ) | [puzzles ](#puzzles ) | [random_string_generator ](#random_string_generator ) |
| [red_button ](#red_button ) | [rpsystem ](#rpsystem ) | [simpledoor ](#simpledoor ) | [slow_exit ](#slow_exit ) | [talking_npc ](#talking_npc ) |
| [traits ](#traits ) | [tree_select ](#tree_select ) | [turnbattle ](#turnbattle ) | [tutorial_world ](#tutorial_world ) | [unixcommand ](#unixcommand ) |
| [wilderness ](#wilderness ) | [xyzgrid ](#xyzgrid ) |
2022-11-23 21:15:23 +01:00
2022-11-15 20:46:50 +01:00
## base_systems
2022-11-23 21:15:23 +01:00
_Systems that are not necessarily tied to a specific
in-game mechanic but which are useful for the game as a whole. Examples include
2022-11-15 20:46:50 +01:00
login systems, new command syntaxes, and build helpers._
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-AWSStorage.md
Contrib-Building-Menu.md
Contrib-Color-Markups.md
Contrib-Components.md
Contrib-Custom-Gametime.md
Contrib-Email-Login.md
2022-12-01 22:53:02 +01:00
Contrib-Godotwebsocket.md
2022-11-15 20:46:50 +01:00
Contrib-Ingame-Python.md
Contrib-Menu-Login.md
Contrib-Mux-Comms-Cmds.md
Contrib-Unixcommand.md
```
2022-11-23 21:15:23 +01:00
### `awsstorage`
2022-11-15 20:46:50 +01:00
_Contrib by The Right Honourable Reverend (trhr), 2020_
This plugin migrates the Web-based portion of Evennia, namely images,
javascript, and other items located inside staticfiles into Amazon AWS (S3)
cloud hosting. Great for those serving media with the game.
[Read the documentation ](./Contrib-AWSStorage.md ) - [Browse the Code ](evennia.contrib.base_systems.awsstorage )
2022-11-23 21:15:23 +01:00
### `building_menu`
2022-11-15 20:46:50 +01:00
_Contrib by vincent-lg, 2018_
Building menus are in-game menus, not unlike `EvMenu` though using a
different approach. Building menus have been specifically designed to edit
information as a builder. Creating a building menu in a command allows
builders quick-editing of a given object, like a room. If you follow the
steps to add the contrib, you will have access to an `edit` command
that will edit any default object, offering to change its key and description.
[Read the documentation ](./Contrib-Building-Menu.md ) - [Browse the Code ](evennia.contrib.base_systems.building_menu )
2022-11-23 21:15:23 +01:00
### `color_markups`
2022-11-15 20:46:50 +01:00
_Contrib by Griatch, 2017_
Additional color markup styles for Evennia (extending or replacing the default
`|r` , `|234` ). Adds support for MUSH-style (`%cr` , `%c123` ) and/or legacy-Evennia
(`{r` , `{123` ).
[Read the documentation ](./Contrib-Color-Markups.md ) - [Browse the Code ](evennia.contrib.base_systems.color_markups )
2022-11-23 21:15:23 +01:00
### `components`
2022-11-15 20:46:50 +01:00
__Contrib by ChrisLR 2021__
# The Components Contrib
[Read the documentation ](./Contrib-Components.md ) - [Browse the Code ](evennia.contrib.base_systems.components )
2022-11-23 21:15:23 +01:00
### `custom_gametime`
2022-11-15 20:46:50 +01:00
_Contrib by vlgeoff, 2017 - based on Griatch's core original_
This reimplements the `evennia.utils.gametime` module but with a _custom_
calendar (unusual number of days per week/month/year etc) for your game world.
Like the original, it allows for scheduling events to happen at given
in-game times, but now taking this custom calendar into account.
[Read the documentation ](./Contrib-Custom-Gametime.md ) - [Browse the Code ](evennia.contrib.base_systems.custom_gametime )
2022-11-23 21:15:23 +01:00
### `email_login`
2022-11-15 20:46:50 +01:00
_Contrib by Griatch, 2012_
This is a variant of the login system that asks for an email-address
instead of a username to login. Note that it does not verify the email,
it just uses it as the identifier rather than a username.
[Read the documentation ](./Contrib-Email-Login.md ) - [Browse the Code ](evennia.contrib.base_systems.email_login )
2022-12-01 22:53:02 +01:00
### `godotwebsocket`
_Contribution by ChrisLR, 2022_
This contrib allows you to connect a Godot Client directly to your mud,
and display regular text with color in Godot's RichTextLabel using BBCode.
You can use Godot to provide advanced functionality with proper Evennia support.
[Read the documentation ](./Contrib-Godotwebsocket.md ) - [Browse the Code ](evennia.contrib.base_systems.godotwebsocket )
2022-11-23 21:15:23 +01:00
### `ingame_python`
2022-11-15 20:46:50 +01:00
_Contrib by Vincent Le Goff 2017_
This contrib adds the ability to script with Python in-game. It allows trusted
staff/builders to dynamically add features and triggers to individual objects
without needing to do it in external Python modules. Using custom Python in-game,
specific rooms, exits, characters, objects etc can be made to behave differently from
its "cousins". This is similar to how softcode works for MU or MudProgs for DIKU.
Keep in mind, however, that allowing Python in-game comes with _severe_
security concerns (you must trust your builders deeply), so read the warnings in
this module carefully before continuing.
[Read the documentation ](./Contrib-Ingame-Python.md ) - [Browse the Code ](evennia.contrib.base_systems.ingame_python )
2022-11-23 21:15:23 +01:00
### `menu_login`
2022-11-15 20:46:50 +01:00
_Contribution by Vincent-lg 2016. Reworked for modern EvMenu by Griatch, 2019._
This changes the Evennia login to ask for the account name and password as a series
of questions instead of requiring you to enter both at once. It uses Evennia's
menu system `EvMenu` under the hood.
[Read the documentation ](./Contrib-Menu-Login.md ) - [Browse the Code ](evennia.contrib.base_systems.menu_login )
2022-11-23 21:15:23 +01:00
### `mux_comms_cmds`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2021_
In Evennia 1.0+, the old Channel commands (originally inspired by MUX) were
replaced by the single `channel` command that performs all these functions.
This contrib (extracted from Evennia 0.9.5) breaks out the functionality into
separate Commands more familiar to MU* users. This is just for show though, the
main `channel` command is still called under the hood.
[Read the documentation ](./Contrib-Mux-Comms-Cmds.md ) - [Browse the Code ](evennia.contrib.base_systems.mux_comms_cmds )
2022-11-23 21:15:23 +01:00
### `unixcommand`
2022-11-15 20:46:50 +01:00
_Contribution by Vincent Le Geoff (vlgeoff), 2017_
This module contains a command class with an alternate syntax parser implementing
Unix-style command syntax in-game. This means `--options` , positional arguments
and stuff like `-n 10` . It might not the best syntax for the average player
but can be really useful for builders when they need to have a single command do
many things with many options. It uses the `ArgumentParser` from Python's standard
library under the hood.
[Read the documentation ](./Contrib-Unixcommand.md ) - [Browse the Code ](evennia.contrib.base_systems.unixcommand )
## full_systems
2022-11-23 21:15:23 +01:00
_'Complete' game engines that can be used directly to start creating content
without no further additions (unless you want to)._
2022-11-15 20:46:50 +01:00
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-Evscaperoom.md
```
2022-11-23 21:15:23 +01:00
### `evscaperoom`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2019_
A full engine for creating multiplayer escape-rooms in Evennia. Allows players to
spawn and join puzzle rooms that track their state independently. Any number of players
can join to solve a room together. This is the engine created for 'EvscapeRoom', which won
the MUD Coders Guild "One Room" Game Jam in April-May, 2019. The contrib has no game
content but contains the utilities and base classes and an empty example room.
[Read the documentation ](./Contrib-Evscaperoom.md ) - [Browse the Code ](evennia.contrib.full_systems.evscaperoom )
## game_systems
2022-11-23 21:15:23 +01:00
_In-game gameplay systems like crafting, mail, combat and more.
Each system is meant to be adopted piecemeal and adopted for your game.
This does not include roleplaying-specific systems, those are found in
the `rpg` category._
2022-11-15 20:46:50 +01:00
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-Barter.md
Contrib-Clothing.md
Contrib-Cooldowns.md
Contrib-Crafting.md
Contrib-Gendersub.md
Contrib-Mail.md
Contrib-Multidescer.md
Contrib-Puzzles.md
Contrib-Turnbattle.md
```
2022-11-23 21:15:23 +01:00
### `barter`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2012_
This implements a full barter system - a way for players to safely
trade items between each other in code rather than simple `give/get`
commands. This increases both safety (at no time will one player have
both goods and payment in-hand) and speed, since agreed goods will
be moved automatically). By just replacing one side with coin objects,
(or a mix of coins and goods), this also works fine for regular money
transactions.
[Read the documentation ](./Contrib-Barter.md ) - [Browse the Code ](evennia.contrib.game_systems.barter )
2022-11-23 21:15:23 +01:00
### `clothing`
2022-11-15 20:46:50 +01:00
_Contribution by Tim Ashley Jenkins, 2017_
Provides a typeclass and commands for wearable clothing. These
look of these clothes are appended to the character's description when worn.
[Read the documentation ](./Contrib-Clothing.md ) - [Browse the Code ](evennia.contrib.game_systems.clothing )
2022-11-23 21:15:23 +01:00
### `cooldowns`
2022-11-15 20:46:50 +01:00
_Contribution by owllex, 2021_
Cooldowns are used to model rate-limited actions, like how often a
character can perform a given action; until a certain time has passed their
command can not be used again. This contrib provides a simple cooldown
handler that can be attached to any typeclass. A cooldown is a lightweight persistent
asynchronous timer that you can query to see if a certain time has yet passed.
[Read the documentation ](./Contrib-Cooldowns.md ) - [Browse the Code ](evennia.contrib.game_systems.cooldowns )
2022-11-23 21:15:23 +01:00
### `crafting`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2020_
This implements a full crafting system. The principle is that of a 'recipe',
where you combine items (tagged as ingredients) create something new. The recipe can also
require certain (non-consumed) tools. An example would be to use the 'bread recipe' to
combine 'flour', 'water' and 'yeast' with an 'oven' to bake a 'loaf of bread'.
[Read the documentation ](./Contrib-Crafting.md ) - [Browse the Code ](evennia.contrib.game_systems.crafting )
2022-11-23 21:15:23 +01:00
### `gendersub`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2015_
This is a simple gender-aware Character class for allowing users to
insert custom markers in their text to indicate gender-aware
messaging. It relies on a modified msg() and is meant as an
inspiration and starting point to how to do stuff like this.
[Read the documentation ](./Contrib-Gendersub.md ) - [Browse the Code ](evennia.contrib.game_systems.gendersub )
2022-11-23 21:15:23 +01:00
### `mail`
2022-11-15 20:46:50 +01:00
_Contribution by grungies1138 2016_
A simple Brandymail style mail system that uses the `Msg` class from Evennia
Core. It has two Commands for either sending mails between Accounts (out of game)
or between Characters (in-game). The two types of mails can be used together or
on their own.
[Read the documentation ](./Contrib-Mail.md ) - [Browse the Code ](evennia.contrib.game_systems.mail )
2022-11-23 21:15:23 +01:00
### `multidescer`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2016_
A "multidescer" is a concept from the MUSH world. It allows for
creating, managing and switching between multiple character
descriptions and is a way for quickly managing your look (such as when
changing clothes) in more free-form roleplaying systems. This will also
work well together with the `rpsystem` contrib.
[Read the documentation ](./Contrib-Multidescer.md ) - [Browse the Code ](evennia.contrib.game_systems.multidescer )
2022-11-23 21:15:23 +01:00
### `puzzles`
2022-11-15 20:46:50 +01:00
_Contribution by Henddher 2018_
Intended for adventure-game style combination puzzles, such as combining fruits
and a blender to create a smoothie. Provides a typeclass and commands for objects
that can be combined (i.e. used together). Unlike the `crafting` contrib, each
puzzle is built from unique objects rather than using tags and a builder can create
the puzzle entirely from in-game.
[Read the documentation ](./Contrib-Puzzles.md ) - [Browse the Code ](evennia.contrib.game_systems.puzzles )
2022-11-23 21:15:23 +01:00
### `turnbattle`
2022-11-15 20:46:50 +01:00
_Contribution by Tim Ashley Jenkins, 2017_
This is a framework for a simple turn-based combat system, similar
to those used in D& D-style tabletop role playing games. It allows
any character to start a fight in a room, at which point initiative
is rolled and a turn order is established. Each participant in combat
has a limited time to decide their action for that turn (30 seconds by
default), and combat progresses through the turn order, looping through
the participants until the fight ends.
[Read the documentation ](./Contrib-Turnbattle.md ) - [Browse the Code ](evennia.contrib.game_systems.turnbattle )
## grid
2022-11-23 21:15:23 +01:00
_Systems related to the game world's topology and structure. Contribs related
to rooms, exits and map building._
2022-11-15 20:46:50 +01:00
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-Extended-Room.md
Contrib-Ingame-Map-Display.md
Contrib-Mapbuilder.md
Contrib-Simpledoor.md
Contrib-Slow-Exit.md
Contrib-Wilderness.md
Contrib-XYZGrid.md
```
2022-11-23 21:15:23 +01:00
### `extended_room`
2022-11-15 20:46:50 +01:00
_Contribution - Griatch 2012, vincent-lg 2019_
This extends the normal `Room` typeclass to allow its description to change
with time-of-day and/or season. It also adds 'details' for the player to look at
in the room (without having to create a new in-game object for each). The room is
supported by new `look` and `desc` commands.
[Read the documentation ](./Contrib-Extended-Room.md ) - [Browse the Code ](evennia.contrib.grid.extended_room )
2022-11-23 21:15:23 +01:00
### `ingame_map_display`
2022-11-15 20:46:50 +01:00
_Contribution - helpme 2022_
This adds an ascii `map` to a given room which can be viewed with the `map` command.
You can easily alter it to add special characters, room colors etc. The map shown is
dynamically generated on use, and supports all compass directions and up/down. Other
directions are ignored.
[Read the documentation ](./Contrib-Ingame-Map-Display.md ) - [Browse the Code ](evennia.contrib.grid.ingame_map_display )
2022-11-23 21:15:23 +01:00
### `mapbuilder`
2022-11-15 20:46:50 +01:00
_Contribution by Cloud_Keeper 2016_
Build a game map from the drawing of a 2D ASCII map.
[Read the documentation ](./Contrib-Mapbuilder.md ) - [Browse the Code ](evennia.contrib.grid.mapbuilder )
2022-11-23 21:15:23 +01:00
### `simpledoor`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2016_
A simple two-way exit that represents a door that can be opened and
closed from both sides. Can easily be expanded to make it lockable,
destroyable etc.
[Read the documentation ](./Contrib-Simpledoor.md ) - [Browse the Code ](evennia.contrib.grid.simpledoor )
2022-11-23 21:15:23 +01:00
### `slow_exit`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2014_
An example of an Exit-type that delays its traversal. This simulates
slow movement, common in many games. The contrib also
contains two commands, `setspeed` and `stop` for changing the movement speed
and abort an ongoing traversal, respectively.
[Read the documentation ](./Contrib-Slow-Exit.md ) - [Browse the Code ](evennia.contrib.grid.slow_exit )
2022-11-23 21:15:23 +01:00
### `wilderness`
2022-11-15 20:46:50 +01:00
_Contribution by titeuf87, 2017_
This contrib provides a wilderness map without actually creating a large number
2023-03-23 23:31:29 +01:00
of rooms - as you move, you instead end up back in the same room but its description
2022-11-15 20:46:50 +01:00
changes. This means you can make huge areas with little database use as
2022-11-25 19:47:32 +01:00
long as the rooms are relatively similar (e.g. only the names/descs changing).
2022-11-15 20:46:50 +01:00
[Read the documentation ](./Contrib-Wilderness.md ) - [Browse the Code ](evennia.contrib.grid.wilderness )
2022-11-23 21:15:23 +01:00
### `xyzgrid`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2021_
Places Evennia's game world on an xy (z being different maps) coordinate grid.
Grid is created and maintained externally by drawing and parsing 2D ASCII maps,
including teleports, map transitions and special markers to aid pathfinding.
Supports very fast shortest-route pathfinding on each map. Also includes a
fast view function for seeing only a limited number of steps away from your
current location (useful for displaying the grid as an in-game, updating map).
[Read the documentation ](./Contrib-XYZGrid.md ) - [Browse the Code ](evennia.contrib.grid.xyzgrid )
## rpg
2022-11-23 21:15:23 +01:00
_Systems specifically related to roleplaying
2022-11-15 20:46:50 +01:00
and rule implementation like character traits, dice rolling and emoting._
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-Buffs.md
Contrib-Character-Creator.md
Contrib-Dice.md
Contrib-Health-Bar.md
Contrib-RPSystem.md
Contrib-Traits.md
```
2022-11-23 21:15:23 +01:00
### `buffs`
2022-11-15 20:46:50 +01:00
_Contribution by Tegiminis 2022_
A buff is a timed object, attached to a game entity. It is capable of modifying values, triggering code, or both.
It is a common design pattern in RPGs, particularly action games.
[Read the documentation ](./Contrib-Buffs.md ) - [Browse the Code ](evennia.contrib.rpg.buffs )
2022-11-23 21:15:23 +01:00
### `character_creator`
2022-11-15 20:46:50 +01:00
2022-11-27 11:38:50 +01:00
_Contribution by InspectorCaracal, 2022_
2022-11-15 20:46:50 +01:00
2022-11-27 11:38:50 +01:00
Commands for managing and initiating an in-game character-creation menu.
2022-11-15 20:46:50 +01:00
[Read the documentation ](./Contrib-Character-Creator.md ) - [Browse the Code ](evennia.contrib.rpg.character_creator )
2022-11-23 21:15:23 +01:00
### `dice`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2012_
A dice roller for any number and side of dice. Adds in-game dice rolling
(`roll 2d10 + 1` ) as well as conditionals (roll under/over/equal to a target)
and functions for rolling dice in code. Command also supports hidden or secret
rolls for use by a human game master.
[Read the documentation ](./Contrib-Dice.md ) - [Browse the Code ](evennia.contrib.rpg.dice )
2022-11-23 21:15:23 +01:00
### `health_bar`
2022-11-15 20:46:50 +01:00
_Contribution by Tim Ashley Jenkins, 2017_
The function provided in this module lets you easily display visual
bars or meters as a colorful bar instead of just a number. A "health bar"
is merely the most obvious use for this, but the bar is highly customizable
and can be used for any sort of appropriate data besides player health.
[Read the documentation ](./Contrib-Health-Bar.md ) - [Browse the Code ](evennia.contrib.rpg.health_bar )
2022-11-23 21:15:23 +01:00
### `rpsystem`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2015_
A full roleplaying emote system. Short-descriptions and recognition (only
know people by their looks until you assign a name to them). Room poses. Masks/disguises
(hide your description). Speak directly in emote, with optional language obscuration
(words get garbled if you don't know the language, you can also have different languages
with different 'sounding' garbling). Whispers can be partly overheard from a distance. A
very powerful in-emote reference system, for referencing and differentiate targets
(including objects).
[Read the documentation ](./Contrib-RPSystem.md ) - [Browse the Code ](evennia.contrib.rpg.rpsystem )
2022-11-23 21:15:23 +01:00
### `traits`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2020, based on code by Whitenoise and Ainneve contribs, 2014_
A `Trait` represents a modifiable property on (usually) a Character. They can
be used to represent everything from attributes (str, agi etc) to skills
(hunting 10, swords 14 etc) and dynamically changing things like HP, XP etc.
Traits differ from normal Attributes in that they track their changes and limit
themselves to particular value-ranges. One can add/subtract from them easily and
they can even change dynamically at a particular rate (like you being poisoned or
healed).
[Read the documentation ](./Contrib-Traits.md ) - [Browse the Code ](evennia.contrib.rpg.traits )
## tutorials
_Helper resources specifically meant to teach a development concept or
to exemplify an Evennia system. Any extra resources tied to documentation
2022-11-23 21:15:23 +01:00
tutorials are found here. Also the home of the Tutorial-World and Evadventure
demo codes._
2022-11-15 20:46:50 +01:00
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-Batchprocessor.md
Contrib-Bodyfunctions.md
Contrib-Evadventure.md
Contrib-Mirror.md
Contrib-Red-Button.md
Contrib-Talking-Npc.md
Contrib-Tutorial-World.md
```
2022-11-23 21:15:23 +01:00
### `batchprocessor`
2022-11-15 20:46:50 +01:00
_Contibution by Griatch, 2012_
Simple examples for the batch-processor. The batch processor is used for generating
in-game content from one or more static files. Files can be stored with version
control and then 'applied' to the game to create content.
[Read the documentation ](./Contrib-Batchprocessor.md ) - [Browse the Code ](evennia.contrib.tutorials.batchprocessor )
2022-11-23 21:15:23 +01:00
### `bodyfunctions`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2012_
Example script for testing. This adds a simple timer that has your
character make small verbal observations at irregular intervals.
[Read the documentation ](./Contrib-Bodyfunctions.md ) - [Browse the Code ](evennia.contrib.tutorials.bodyfunctions )
2022-11-23 21:15:23 +01:00
### `evadventure`
2022-11-15 20:46:50 +01:00
_Contrib by Griatch 2022_
```{warning}
NOTE - this tutorial is WIP and NOT complete! It was put on hold to focus on
releasing Evennia 1.0. You will still learn things from it, but don't expect
perfection.
```
[Read the documentation ](./Contrib-Evadventure.md ) - [Browse the Code ](evennia.contrib.tutorials.evadventure )
2022-11-23 21:15:23 +01:00
### `mirror`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2017_
A simple mirror object to experiment with. It will respond to being looked at.
[Read the documentation ](./Contrib-Mirror.md ) - [Browse the Code ](evennia.contrib.tutorials.mirror )
2022-11-23 21:15:23 +01:00
### `red_button`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch, 2011_
A red button that you can press to have an effect. This is a more advanced example
object with its own functionality and state tracking.
[Read the documentation ](./Contrib-Red-Button.md ) - [Browse the Code ](evennia.contrib.tutorials.red_button )
2022-11-23 21:15:23 +01:00
### `talking_npc`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2011. Updated by grungies1138, 2016_
This is an example of a static NPC object capable of holding a simple menu-driven
conversation. Suitable for example as a quest giver or merchant.
[Read the documentation ](./Contrib-Talking-Npc.md ) - [Browse the Code ](evennia.contrib.tutorials.talking_npc )
2022-11-23 21:15:23 +01:00
### `tutorial_world`
2022-11-15 20:46:50 +01:00
_Contribution by Griatch 2011, 2015_
A stand-alone tutorial area for an unmodified Evennia install.
Think of it as a sort of single-player adventure rather than a
full-fledged multi-player game world. The various rooms and objects
are designed to show off features of Evennia, not to be a
very challenging (nor long) gaming experience. As such it's of course
only skimming the surface of what is possible. Taking this apart
is a great way to start learning the system.
[Read the documentation ](./Contrib-Tutorial-World.md ) - [Browse the Code ](evennia.contrib.tutorials.tutorial_world )
## utils
2022-11-23 21:15:23 +01:00
_Miscellaneous, tools for manipulating text, security auditing, and more._
2022-11-15 20:46:50 +01:00
2022-11-25 19:47:32 +01:00
```{toctree}
:hidden:
Contribs-Guidelines.md
```
2022-11-15 20:46:50 +01:00
```{toctree}
:maxdepth: 1
Contrib-Auditing.md
Contrib-Fieldfill.md
Contrib-Git-Integration.md
Contrib-Name-Generator.md
Contrib-Random-String-Generator.md
Contrib-Tree-Select.md
```
2022-11-23 21:15:23 +01:00
### `auditing`
2022-11-15 20:46:50 +01:00
_Contribution by Johnny, 2017_
Utility that taps and intercepts all data sent to/from clients and the
server and passes it to a callback of your choosing. This is intended for
quality assurance, post-incident investigations and debugging.
[Read the documentation ](./Contrib-Auditing.md ) - [Browse the Code ](evennia.contrib.utils.auditing )
2022-11-23 21:15:23 +01:00
### `fieldfill`
2022-11-15 20:46:50 +01:00
_Contribution by Tim Ashley Jenkins, 2018_
This module contains a function that generates an `EvMenu` for you - this
menu presents the player with a form of fields that can be filled
out in any order (e.g. for character generation or building). Each field's value can
be verified, with the function allowing easy checks for text and integer input,
minimum and maximum values / character lengths, or can even be verified by a custom
function. Once the form is submitted, the form's data is submitted as a dictionary
to any callable of your choice.
[Read the documentation ](./Contrib-Fieldfill.md ) - [Browse the Code ](evennia.contrib.utils.fieldfill )
2022-11-23 21:15:23 +01:00
### `git_integration`
2022-11-15 20:46:50 +01:00
_Contribution by helpme (2022)_
2023-01-15 13:46:07 +01:00
A module to integrate a stripped-down version of git within the game, allowing developers to view their git status, change branches, and pull updated code of both their local mygame repo and Evennia core. After a successful pull or checkout, the git command will reload the game: Manual restarts may be required to to apply certain changes that would impact persistent scripts etc.
2022-11-15 20:46:50 +01:00
[Read the documentation ](./Contrib-Git-Integration.md ) - [Browse the Code ](evennia.contrib.utils.git_integration )
2022-11-23 21:15:23 +01:00
### `name_generator`
2022-11-15 20:46:50 +01:00
_Contribution by InspectorCaracal (2022)_
A module for generating random names, both real-world and fantasy. Real-world
names can be generated either as first (personal) names, family (last) names, or
full names (first, optional middles, and last). The name data is from [Behind the Name ](https://www.behindthename.com/ )
and used under the [CC BY-SA 4.0 license ](https://creativecommons.org/licenses/by-sa/4.0/ ).
[Read the documentation ](./Contrib-Name-Generator.md ) - [Browse the Code ](evennia.contrib.utils.name_generator )
2022-11-23 21:15:23 +01:00
### `random_string_generator`
2022-11-15 20:46:50 +01:00
_Contribution by Vincent Le Goff (vlgeoff), 2017_
This utility can be used to generate pseudo-random strings of information
with specific criteria. You could, for instance, use it to generate
phone numbers, license plate numbers, validation codes, in-game security
passwords and so on. The strings generated will be stored and won't be repeated.
[Read the documentation ](./Contrib-Random-String-Generator.md ) - [Browse the Code ](evennia.contrib.utils.random_string_generator )
2022-11-23 21:15:23 +01:00
### `tree_select`
2022-11-15 20:46:50 +01:00
_Contribution by Tim Ashley Jenkins, 2017_
This utility allows you to create and initialize an entire branching EvMenu
instance from a multi-line string passed to one function.
[Read the documentation ](./Contrib-Tree-Select.md ) - [Browse the Code ](evennia.contrib.utils.tree_select )
----
< small > This document page is auto-generated. Manual changes
will be overwritten.< / small >