For example, lets say I have a trigger (which is a type of activator) with this script attached:
Scriptname ActivatorTriggerTestScript extends ObjectReferenceObjectReference Property target AutoEvent OnTriggerEnter(ObjectReference akActionRef)target.Activate(akActionRef)EndEvent
Now that would work if it was pointed at a door or something. But what if I wanted to activate another activator, that had, for example, this script:
Scriptname TriggerActivatedScript extends ObjectReference Event OnActivate(ObjectReference akActivator)Debug.MessageBox("Test")EndEventIs this possible at all?
