Govilku Posted July 24, 2017 Share Posted July 24, 2017 I CANNOT figure out why this won't compile everything looks good and this should be real simple.The player enters the triggerbox, image space applies, they exit, image space modifer removes itself. Simple right?! Scriptname DAEINITTRIG extends ObjectReference Quest Property DaedraInit Auto Actor Property PlayerRef Auto ImageSpaceModifier Property IMAGDAE Auto Event OnTriggerEnter(ObjectReference akActionRef) if (akActionRef == PlayerRef) DaedraInit.SetStage(5) IMAGDAE.remove() IMAGDAE.ApplyCrossFade(1) IMAGDAE.Apply(1) EndIf EndEvent Event OnTriggerLeave(ObjectReference akActionRef) if (akActionRef == PlayerRef) IMAGDAE.remove() endif EndEvent Link to comment Share on other sites More sharing options...
Recommended Posts