Merge config_help.md into Readme

This commit is contained in:
Lars Mueller 2020-06-05 16:16:02 +02:00
parent 4828e53b44
commit fdae861bd2
2 changed files with 97 additions and 79 deletions

@ -40,4 +40,100 @@ player:set_hp(0, {
color = 0xFFFFFF
}
})
```
```
## Configuration
### Default Configuration
```json
{
"max_messages":5,
"mode":"list",
"autoremove_interval":30,
"hud_pos":{"x":0.75,"y":1},
"hud_base_offset": {"x":0,"y":-122},
"enable_environmental": true,
"enable_unknown": false,
"enable_forbidden_playernames": true,
"environmental_reasons": {
"falling":{
"name":"Falling",
"color":{"r": 255, "g": 255, "b": 255},
"method":"deathlist_tombstone.png"
},
"unknown":{
"name":"Something",
"color":{"r": 255, "g": 255, "b": 255},
"method":"deathlist_tombstone.png"
},
"drowning":{
"color":{"r": 105, "g": 201, "b": 231},
"method":"bubble.png",
"nodes": {
"default:water_flowing" : { "name" : "Water" }
}
},
"node_damage":{
"color":{"r": 255, "g": 255, "b": 255},
"method":"generate",
"nodes": {
"default:lava_flowing" : { "name" : "Lava", "color" : {"r": 244, "g": 114, "b": 9}, "method" : "fire_basic_flame.png" },
"default:lava_source" : { "color" : {"r": 244, "g": 114, "b": 9}, "method" : "fire_basic_flame.png" }
}
}
}
}
```
### Usage
#### `max_messages`
Maximum amount of messages to be displayed. Number > 0.
#### `mode`
String, either `"stack"` or `"list"`. Specifies message orientation. A stack means that the most recent message is always on the top, while list means exactly the opposite.
#### `autoremove_interval`
Can be set to `false` or a positive number in seconds. Specifies how often messages are removed despite having enough space left for the purpose of not cluttering the HUD.
#### `hud_pos`
X- and Y-Coordinate, numbers, position on HUD.
#### `hud_base_offset`
X- and Y-Offset, numbers in pixels(?).
#### `enable_environmental`
Boolean, whether to enable environmental reasons inside kill history.
#### `enable_unknown`
Boolean, whether to enable unknown (none of `falling`, `drowning` or `node_damage`) reasons inside kill history.
#### `enable_forbidden_playernames`
Boolean, whether to disallow certain playernames in order to reduce confusion(such as "Lava", "Water", "Falling" or "Something")
#### `environmental_reasons`
Table/Dictionairy of possible deaths due to environment.
##### Basic structure of a kill message
* `name` of killing thing, colorized using a `color`(table/dictionairy, r/g/b)
* `method` used by the killing thing, a texture. If `"generate"` is specified and a node is responsible, the node texture will be used.
##### `falling` / `unknown`
Player died through falling or an unknown reason; no node responsible. One definition of `name`, `color` and `method`.
##### `drowning` / `node_damage`
Player died by drowning node or by taking node damage. A node *must* be responsible.
Using the `nodes` table/dictionairy, you can specify overrides for each specific node concerning `name`, `color`, and `method`. If not specified, default values are taken.

@ -1,78 +0,0 @@
# Kill History - Configuration
JSON Configuration : `<worldpath>/config/deathlist.json`
Text Logs : `<worldpath>/logs/deathlist/<date>.txt`
Explaining document(this, Markdown) : `<modpath/gamepath>/deathlist/config_help.md`
Readme : `<modpath/gamepath>/deathlist/Readme.md`
Located under `<modpath/gamepath>/deathlist/default_config.json`
```json
{
"max_messages":5,
"mode":"list",
"autoremove_interval":30,
"hud_pos":{"x":0.75,"y":1},
"hud_base_offset": {"x":0,"y":-122},
"enable_environmental": true,
"enable_unknown": false,
"enable_forbidden_playernames": true,
"environmental_reasons": {
"falling":{
"name":"Falling",
"color":{"r": 255, "g": 255, "b": 255},
"method":"deathlist_tombstone.png"
},
"unknown":{
"name":"Something",
"color":{"r": 255, "g": 255, "b": 255},
"method":"deathlist_tombstone.png"
},
"drowning":{
"color":{"r": 105, "g": 201, "b": 231},
"method":"bubble.png",
"nodes": {
"default:water_flowing" : { "name" : "Water" }
}
},
"node_damage":{
"color":{"r": 255, "g": 255, "b": 255},
"method":"generate",
"nodes": {
"default:lava_flowing" : { "name" : "Lava", "color" : {"r": 244, "g": 114, "b": 9}, "method" : "fire_basic_flame.png" },
"default:lava_source" : { "color" : {"r": 244, "g": 114, "b": 9}, "method" : "fire_basic_flame.png" }
}
}
}
}
```
#### `max_messages`
Maximum amount of messages to be displayed. Number > 0.
#### `mode`
String, either `"stack"` or `"list"`. Specifies message orientation. A stack means that the most recent message is always on the top, while list means exactly the opposite.
#### `autoremove_interval`
Can be set to `false` or a positive number in seconds. Specifies how often messages are removed despite having enough space left for the purpose of not cluttering the HUD.
#### `hud_pos`
X- and Y-Coordinate, numbers, position on HUD.
#### `hud_base_offset`
X- and Y-Offset, numbers in pixels(?).
#### `enable_environmental`
Boolean, whether to enable environmental reasons inside kill history.
#### `enable_unknown`
Boolean, whether to enable unknown (none of `falling`, `drowning` or `node_damage`) reasons inside kill history.
#### `enable_forbidden_playernames`
Boolean, whether to disallow certain playernames in order to reduce confusion(such as "Lava", "Water", "Falling" or "Something")
#### `environmental_reasons`
Table/Dictionairy of possible deaths due to environment.
##### Basic structure of a kill message
* `name` of killing thing, colorized using a `color`(table/dictionairy, r/g/b)
* `method` used by the killing thing, a texture. If `"generate"` is specified and a node is responsible, the node texture will be used.
##### `falling` / `unknown`
Player died through falling or an unknown reason; no node responsible. One definition of `name`, `color` and `method`.
##### `drowning` / `node_damage`
Player died by drowning node or by taking node damage. A node *must* be responsible.
Using the `nodes` table/dictionairy, you can specify overrides for each specific node concerning `name`, `color`, and `method`. If not specified, default values are taken.