Jamaicob Posted July 29, 2010 Share Posted July 29, 2010 Ok, so I'm trying to make a mod for oblivion, which involves "objects" disappearing and reappearing at certain times. I want an "object" to appear at 8.00pm and disappear at 6.00am. I'm a novice script user and I'm having loads of trouble :wallbash: Can some one please send me a script that might work? I've been working on this for 2 weeks or so on something that seems to simple to so :sad: please help :confused: Link to comment Share on other sites More sharing options...
David Brasher Posted July 30, 2010 Share Posted July 30, 2010 This is a chopped-down and tweaked version of a script from one of my mods SCN AANightCreatureSCRIPT ; Object script applied to each type of creature in question. Only the live ones disappear in the day.; The corpses lay there until they respawn. Begin Gamemode _____If GetDead == 0_________ If Gamehour < 6 || Gamehour >= 20 )_________ _____Enable_________ Else_________ _____Disable_________ EndIf_____EndIf End Link to comment Share on other sites More sharing options...
Shadowfen Posted July 30, 2010 Share Posted July 30, 2010 This is a chopped-down and tweaked version of a script from one of my mods SCN AANightCreatureSCRIPT ; Object script applied to each type of creature in question. Only the live ones disappear in the day.; The corpses lay there until they respawn. Begin Gamemode _____If GetDead == 0_________ If Gamehour < 6 || Gamehour >= 20 )_________ _____Enable_________ Else_________ _____Disable_________ EndIf_____EndIf End Cool. I was going to look up the scripts in your mod before I saw your answer. BTW, did you know that the dead night creatures get their stuff back when evening falls again? Kill them once and then keep visiting the body once every day for more free stuff. :teehee: Link to comment Share on other sites More sharing options...
Jamaicob Posted July 30, 2010 Author Share Posted July 30, 2010 THANKS!!!but... lets say I wanted to disable the "object" at death, and have it resurrected when night arrives? Link to comment Share on other sites More sharing options...
Recommended Posts