David Brasher Posted May 6, 2012 Share Posted May 6, 2012 (edited) How do you say one of these two things in Papyrus? Begin OnActivate Player OR If GetIsActionREF Player == 1 ; * Do Stuff * EndIf This won't compile: Event OnActivate (PlayerREF akActionRef) ; * Do Stuff * EndEvent Actor Property PlayerREF Auto The wiki is very vague and lacks adequate example scripts as usual. Edited May 6, 2012 by David Brasher Link to comment Share on other sites More sharing options...
fg109 Posted May 6, 2012 Share Posted May 6, 2012 Event OnActivate(ObjectReference akActionRef) if akActionRef == PlayerRef ;do stuff endif EndEvent Actor Property PlayerREF Auto There's no way to filter the activation events to only fire depending on who/what is doing the activating. Link to comment Share on other sites More sharing options...
David Brasher Posted May 6, 2012 Author Share Posted May 6, 2012 Thanks a lot! That really helps. Link to comment Share on other sites More sharing options...
Recommended Posts