bronzeP Posted February 16, 2012 Share Posted February 16, 2012 Hi folks, im new here in the modder scene and i tried to use a gravestone as activator so i looked under activator and found this gravestone (RTGravestone01). I used the creation kit scripting tut for beginner to make a script with a simple messagebox. saved it, script succeded, but in the game i can't activate it, why? Here is the code: Scriptname Adam2 extends ObjectReference {This is my very first script!} Event OnActivate(ObjectReference akActionRef) Debug.MessageBox("test") endEvent Link to comment Share on other sites More sharing options...
MastaWizard Posted February 16, 2012 Share Posted February 16, 2012 i did the same thing with a chicken -_- it worked but it does show i can activate the chicken. I wish i could help but i have same problem Link to comment Share on other sites More sharing options...
azza1989 Posted February 16, 2012 Share Posted February 16, 2012 (edited) Hi folks, im new here in the modder scene and i tried to use a gravestone as activator so i looked under activator and found this gravestone (RTGravestone01). I used the creation kit scripting tut for beginner to make a script with a simple messagebox. saved it, script succeded, but in the game i can't activate it, why? Here is the code: Scriptname Adam2 extends ObjectReference {This is my very first script!} Event OnActivate(ObjectReference akActionRef) Debug.MessageBox("test") endEvent try this: Scriptname Adam2 extends ObjectReference {This is my very first script!} Event OnActivate(ObjectReference akActivateRef) if activateRef == Game.GetPlayer() Debug.MessageBox("test") endEvent Edited February 16, 2012 by azza1989 Link to comment Share on other sites More sharing options...
PaladinRider Posted February 16, 2012 Share Posted February 16, 2012 If ingame you can't activate it means that the icon to activate doesn't appear as a crosshairs, then you've probably used a static object instead of an activator. Object window -> WorldObjects -> Activators Link to comment Share on other sites More sharing options...
Recommended Posts