>

Reset Interior Cell

Syntax: ResetInterior CellID Example: ResetInterior MyVault01 Marks the cell as expired so that the next time it is loaded it will be cleaned up as if several days have passed.
read more

Script: Repair Broken Door

First create a door. It can be locked or unlocked. Next create a Message. Example text: An examination of the door's security components reveals that several parts and connections were damaged when raiders tried to break in. It should be repairable with the right parts, or perhaps the system can be bypassed. [Repair of 40 or greater required, plus 2 pieces of Scrap Electronics and a Sensor Module are required to repair the door.] [Science of 50 or greater required to bypass the security system.] There will be three options: Then create a the fixed door messages: You fixed the Safe House...
read more

Script: Auto Close Door

ScriptNname AutoClosingDoor01 float doorTimer short closeDoor Begin GameMode if closeDoor == 1 if doorTimer > 0 set doorTimer to doorTimer - getSecondsPassed elseif GetOpenState == 1 ; if the door is still open SetOpenState 0 ; close the door set closeDoor to 0 endif endif End Begin OnActivate if GetOpenState == 3 ; if the door is closed set doorTimer to 5 set closeDoor to 1 endif Activate End
read more