Junior Prado
Member-
Content Count
14 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout Junior Prado
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Junior Prado started following assignAsCargo & orderGetIn, SETCAPTIVE BUG and AssignasCargo work once..
-
I Just discovered that players with setcaptive true; will not show Briefing.sqf Hope it can help someone.
-
What Default settings mean for medical ? With an example of, Allow IV ? (Everyone, Regular Medic, Doctor) Where's the settings is take from Setting Default will ignore my medical configuration?
-
BM-21 MLRS Fired by AI scripting
Junior Prado replied to Maguila.gm's topic in ARMA 3 - MISSION EDITING & SCRIPTING
_arty = arty; _target = a1; _artyAmmo = getArtilleryAmmo [_arty] select 0; _artyETA = _arty getArtilleryETA [getPosATL _target, _artyAmmo]; _inRange = (getPosATL _target) inRangeOfArtillery [[_arty], _artyAmmo]; systemchat format ["In range: %1",_inRange]; if (_artyETA > 0 AND _inRange) then { systemchat "Cleared to fire!"; systemchat format ["Impact ETA: %1s",_artyETA]; _arty commandArtilleryFire [getPosATL _target, _artyAmmo, 40]; }; -
AssignasCargo work once..
Junior Prado replied to Junior Prado's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Looks this code working: grp5 addvehicle heli; _waypoint1 = grp5 addwaypoint[getmarkerpos"m1",0]; _waypoint1 setwaypointtype"GETIN"; _waypoint1 setWaypointSpeed "FULL"; Thx for help -
AssignasCargo work once..
Junior Prado replied to Junior Prado's topic in ARMA 3 - MISSION EDITING & SCRIPTING
First trigger: Blufor present on action: { _x assignAsCargo heli; [_x] orderGetIn true;} forEach units grp5; this code make the troops embark Second trigger: Condition: _aliveUnits = (units (grp5)) select {alive _x}; ({_x in heli} count _aliveUnits) == (count _aliveUnits); Action: _waypoint0 = grp4 addwaypoint[getmarkerpos"m1",0]; _waypoint0 setwaypointtype"TR UNLOAD"; _waypoint0 setWaypointSpeed "FULL"; The helicopter "heli" will wait the grp5 embark then will move to the marker m1 and TR UNLOAD.. the troops disembark. After this, i can use an waypoint for move the grp5 and it work.. but the assignascargo / ordergetin will not work anymore... i can't embark the troops again.. -
AssignasCargo work once..
Junior Prado replied to Junior Prado's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Grp5 is a fireteam (cargo troops) Grp4 heli crew - wp tr unload, heli move to the wp and desembark cargo -
Hello, i have an issue i use this code.. Embark: { _x assignAsCargo heli; [_x] orderGetIn true;} forEach units grp5; - the code Works ============ Disembark: _waypoint0 = grp4 addwaypoint[getmarkerpos"m1",0]; _waypoint0 setwaypointtype"TR UNLOAD"; _waypoint0 setWaypointSpeed "FULL"; It work, troops disembark but they will not embark again... the assignascargo will not work anymore.. Troops not answer to the command.. I tried assign in a new helicopter and no work.. i tried {unassignVehicle _x} forEach units grp5; no work.. Any clue why?
-
assignAsCargo & orderGetIn
Junior Prado replied to weparo's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello, i have an issue Embark: { _x assignAsCargo heli; [_x] orderGetIn true;} forEach units grp5; - Works ============ Disembark: _waypoint0 = grp4 addwaypoint[getmarkerpos"m1",0]; _waypoint0 setwaypointtype"TR UNLOAD"; _waypoint0 setWaypointSpeed "FULL"; It work, troops disembark but they will not embark again... they get stuck, assignascargo will not work anymore.. Troops not answer to the command.. I tried assign in a new helicopter and no work.. i tried {unassignVehicle _x} forEach units grp5; no work.. Any clue why? -
Radio Trigger on Dedicated
Junior Prado replied to Prado's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you very much, problem solved.. i think i tried (player == sq) but the correct is: this && (player == sq); -
Play video for all players on the server
Junior Prado replied to nomad924's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Please i need some help.. i have an addaction to start the movie this addAction["Briefing", "'scripts\tv.sqf' remoteExec ['execVM']", nil, 6, True, True, "", "(_target distance _this) < 4"]; tv.sqf if(!isServer) exitWith {}; t1 setobjecttextureglobal [0,"videos\brif.ogv"]; ["videos\brif.ogv",[10,10]] remoteExec ["bis_fnc_playvideo", ([0, -2] select isDedicated), true]; it works well and exec on all machines, but if the player disconnect, and connect again the video play again.. How can the script exec once, so it will not repeat if client disconnect?