>
Currently Browsing: Fallout New Vegas

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

Script: Reset Container Contents

Used for Safe House Fridge and Supply Crates scn TISHNiptonSupplyResetScript begin GameMode if GetDayOfWeek == 1 || GetDayOfWeek == 4 TISHNiptonSupply01REF.ResetInventory TISHNiptonSupply02REF.ResetInventory endif end
read more

Fallout: New Vegas Healer Scripts

Addiction: ;Set to heal the player of addictions RemoveSpell WithdrawalAlcohol RemoveSpell WithdrawalAntNectar RemoveSpell WithdrawalBuffout RemoveSpell WithdrawalHydra RemoveSpell WithdrawalJet RemoveSpell WithdrawalMentats RemoveSpell WithdrawalMorphine RemoveSpell WithdrawalPsycho RemoveSpell WithdrawalQuantumNukacola RemoveSpell WithdrawalRebound RemoveSpell WithdrawalSteady RemoveSpell WithdrawalTobacco RemoveSpell WithdrawalTurbo ShowMessage AddictionRemovalMsg Set Generic.Addicted to 0 Raditation: player.RestoreAV RadiationRads 1000 Health: ;Set to heal the player of physical damage plus code...
read more

« Previous Entries