Arma 3 Simple Hostage Rescue Script



Arma 3 Simple Hostage Rescue Script

Arma 3 Simple Hostage Rescue Script

NOTE: be aware when copying and pasting code from here, that utube adds random hyphen (-) for no reason the following code should have NO hyphens!

This video will show you how to use a simple hostage rescue script I made. Just copy and paste the stuff bellow in the unit you want to be the “hostage”. (ctrl + C to copy / ctrl + V to paste in the editor.) Rember to name your unit Pow1.

this disableAI “move”; this disableAI “fire”; this setcaptive true; removeallweapons this; removebackpack this; removeGoggles this; removeHeadgear this; this unassignitem “nvgoggles”; this removeitem “nvgoggles”; removeVest this; this setunitpos “middle”; this addaction [“P.O.W. joins your team”,{[pow1] join (_this select 1); pow1 setcaptive false; pow1 setunitpos “auto”; pow1 enableAI “Move”; pow1 enableAI “fire”; pow1 addMagazine “30Rnd_65x39_caseless_mag”; pow1 addWeapon “arifle_MXM_F”; pow1 addMagazine “30Rnd_65x39_caseless_mag”; pow1 addMagazine “30Rnd_65x39_caseless_mag”; }];

Extra ideas so want a trigger to be fired when you bring the hostages to a certain location? A good trigger condition for this would be: pow1 in thislist …… rember to set the trigger to blue for present and delete the word “this” that comes with the triggers by default. For two hostages you could have your condition as: pow1 in thislist OR pow2 in thislist;

Comments are closed.