

Rav_Raven
Member-
Content Count
213 -
Joined
-
Last visited
-
Medals
Everything posted by Rav_Raven
-
received the mail?
-
Yes. Review of the mission this Sunday. Greetings.
-
Send me the mission to canoalej@hotmail.com. Greetings.
-
Sorry for the delay but my work has no mercy. Now download a demonstration of the use of mission of my script. MISSION DEMO (MP) Download (3.1 Kb) Greetings from Argentina. Â Note: You need rc_be32k.pbo
-
That is correct. Anyway I will make a demonstration mission to understand the process.
-
The script works perfectly in MP, you must first put the group in the vehicle (via init or trigger) and then run paratrooper.sqs, at that precise order. Then the script verifies that the group is on board and wait for his leader jump to compel the rest to follow.
-
You must allocate to the group inside the plane "before" to run the script (usually in the init). Failure to do so, the script will validate that the leader is not inside the plane and expel the group. Greetings.
-
You should appoint each group putting this in the beginning of their field leader: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">Structure Group_Name = this group; {_x moveincargo Vehicle_Name} foreach units Group_Name; {_x assignascargo Vehicle_Name} foreach units Group_Name Exactly grpW1 = this group; {_x moveincargo heliW1} foreach units grpW1; {_x assignascargo heliW1} foreach units grpW1 Then you must run the script to keep waiting until the leader of the group jump: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">Structure [Name Group, Helo Name] exec "Paratrooper.sqs" Exactly [GrpW1, HeliW1] exec "Paratrooper.sqs" For the leading jump (and the rest of the group continue to), you must force it to jump: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">Structure Leader Name ACTION [ "EJECT" vehicle Name] Exactly leader (GrpW1) ACTION [ "EJECT" leader vehicle (grpW1)]
-
Move unit into house position instantly
Rav_Raven replied to namreg's topic in ARMA - MISSION EDITING & SCRIPTING
Try execute my script: TakeBuilding.sqs (It spawn enemy into buildings). -
Deleting units and vehicles
Rav_Raven replied to Balschoiw's topic in ARMA - MISSION EDITING & SCRIPTING
@Balschoiw You must call the function this way: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">[name_trigger] execVM "Clear.sqf" I have tested the function and works properly -
Deleting units and vehicles
Rav_Raven replied to Balschoiw's topic in ARMA - MISSION EDITING & SCRIPTING
Try this: Â <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">_clear1 = _this select 0; private ["_clear1","_i","_remove"]; while {true} do { _remove = nearestObjects [_clear1, ["landvehicle"], 25]; for [{_i = 0},{_i < (count _remove)},{_i = _i + 1}] do { {deletevehicle _x} foreach crew (_remove select _i); deletevehicle (_remove select _i); }; sleep 0.1; }; -
Here is another: CreateAll Greetings from Argentina. Â