-
Notifications
You must be signed in to change notification settings - Fork 3
Game Re‐Usable Variables
Cromha edited this page Feb 18, 2024
·
5 revisions
When creating utilities items, you'll have the possibility to ask the game for variables. You can only ask for yaml data variables or the player' save variable. Here's the table of which variables you can use and what they correspond to.
Variable | What's Inside |
---|---|
player |
All the player' save data. So basically, the player stats. |
map |
The yaml data of the vanilla/plugin 'map.yaml' file |
item |
The yaml data of the vanilla/plugin 'items.yaml' file |
drinks |
The yaml data of the vanilla/plugin 'drinks.yaml' file |
enemy |
The yaml data of the vanilla/plugin 'enemies.yaml' file |
npcs |
The yaml data of the vanilla/plugin 'npcs.yaml' file |
start_player |
The yaml data of the vanilla/plugin 'start.yaml' file |
lists |
The yaml data of the vanilla/plugin 'lists.yaml' file |
zone |
The yaml data of the vanilla/plugin 'zone.yaml' file |
dialog |
The yaml data of the vanilla/plugin 'dialog.yaml' file |
mission |
The yaml data of the vanilla/plugin 'mission.yaml' file |
mounts |
The yaml data of the vanilla/plugin 'mounts.yaml' file |
start_time |
The time of when the game has start. Useful if your utility script take time to do stuff and you want to remove that long time from the elapsed time in game |
- Running The Game
- Gameplay Guide
- GitHub Discussions
- Building Source Code
- Game Preferences
- The Game Folder
- The World Of Bane Of Wargs
- Game Timeline Plot
- Yaml Syntax
- Creating Mods
- Creating Starts
- Creating Map Points
- Creating Enemies
- Creating Enemies Categories
- Creating Map Zones
- Creating Items
- Creating Drinks
- Writing Dialogs
- Creating Missions
- Creating Events
- Creating NPCS
- Creating Mounts
Additional Knowledge