Thanks for the replys so far guys!
Forgive me but I'm pretty new to mission editing so I need to get this clear, step by step.
The following is what I think I need to do and questions I have.
A. Am I right in thinking I need to name the vehicles I want this to take effect on i.e - V1,V2,V3 etc?
B. create a trigger and place it in the safezone areas. Enter
vehicle AddEventhandler ["Killed", {_this select 1 exec "spawnscript.sqs"}] in the
On Activation box
Question 1: What should I select in the
Activation drop down box?
Question 2: Do I need to type anything else in the
Condition and
On Deactivation boxes?
C. create a script - this is what I have so far...
;--------------------------------------------------
?!(local Server): Goto "end"
_vcl = _this select 0
_respawndelay = 10
#start
~1
?(Canmove _vcl):Goto "start"
~_respawndelay
deleteVehicle _vcl
createUnit Unit name?
goto "end"
#end
Exit
;--------------------------------------------------Also I dont know what you mean by "the killer of the vehicle would be passed as an arguement"?