dfhack/docs/builtins/sc-script.rst

27 lines
699 B
ReStructuredText

2022-07-18 11:58:35 -06:00
sc-script
=========
2022-07-18 11:58:35 -06:00
.. dfhack-tool::
:summary: Run commands when game state changes occur.
2022-08-12 00:34:37 -06:00
:tags: dfhack
This is similar to the static `init-files` but is slightly more flexible since
it can be set dynamically.
2022-07-18 11:58:35 -06:00
2022-08-17 23:42:02 -06:00
Usage
-----
2022-07-18 11:58:35 -06:00
``sc-script [help]``
Show the list of valid event names.
``sc-script list [<event>]``
List the currently registered files for all events or the specified event.
``sc-script add|remove <event> <file> [<file> ...]``
Register or unregister a file to be run for the specified event.
Example
-------
``sc-script add SC_MAP_LOADED spawn_extra_monsters.init``
Registers the ``spawn_extra_monsters.init`` file to be run whenever a new
map is loaded.