the created object
Scriptname activatorscript extends ObjectReference int property isactivated=0 AutoEvent OnActivate ( ObjectReference akActionRef) isactivated=1EndevntPretty simple.
Now the object who create the activator, this is craftable and placeable so I can not hardcode any links.
Scriptname basecript extends ObjectReference ObjectReference property activatorref Autoactivator property myactivator Autofunction createactivator() activatorref=Placeatme(myactivator) endfunctionfunction checkstatus() if activatorref.isactivated==1 ;do stuff endifendfunctionMy problem is the
if activatorref.isactivated==1who does not work
any tips, is this even workable?