Update 'In Game Admin Helpers'

via 2022-08-22 14:02:04 +00:00
parent b448e1acdd
commit 93425d9b46
1 changed files with 2 additions and 0 deletions

@ -4,6 +4,7 @@ See also [[ACEsnippets]]
## Make Units Zeus-Interactable ## Make Units Zeus-Interactable
In the editor, placing this in the init field of a unit will make the unit interactable by the Zeus called myCurator (set name of the Zeus module to myCurator), even if you are not running with Zeus helper mods: In the editor, placing this in the init field of a unit will make the unit interactable by the Zeus called myCurator (set name of the Zeus module to myCurator), even if you are not running with Zeus helper mods:
`myCurator addCuratorEditableObjects [[this], true];` `myCurator addCuratorEditableObjects [[this], true];`
## Get Unit Zeus is Controlling ## Get Unit Zeus is Controlling
@ -13,6 +14,7 @@ In the editor, placing this in the init field of a unit will make the unit inter
# Time # Time
## Set time to specific time using skipTime ## Set time to specific time using skipTime
Change to time x: Change to time x:
``` ```
skipTime ((x - dayTime + 24) % 24); skipTime ((x - dayTime + 24) % 24);
``` ```