Lucas Andreatta
Member-
Content Count
27 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout Lucas Andreatta
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Hello, can anyone help me? I would like to do a mission of dominating the island using the "ALIVE", but would like a system that as you gain ground, is releasing new resources to buy armor, cars and units.
-
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Please :'( -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Can someone CREATE this script for me? -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
But does bis_fnc_spawnGroup dynamically respawn AI? How does the spawn cache and markup script work? -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
alive is better -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'm going to use alive module systems to spawn AI -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
0 = [] spawn { if (isServer) then { while {true} do { { _unit = _x; if !(_unit getVariable ["hasIntelEVH",false]) then { _unit addEventHandler ["killed",{ params ["_unit"]; if (random 100 < ("droprate" call BIS_fnc_getParamValue) ) then { _suitcase = "Land_Suitcase_F" createVehicle (getpos _unit); [_suitcase,["Pick up INTEL", {params ["_suitcase","_caller","_id"]; hint "you have intel, clever one, you."; [_suitcase,_id] remoteExec ["removeAction"]; deleteVehicle _suitcase } ] ] remoteExec ["addAction",0,_suitcase]; }; }]; _unit setVariable ["hasIntelEVH",true]; }; } forEach (allUnits select {side _x == EAST}); sleep 10; }; }; }; the drop intel script, how i do? -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
In case the cache will spawn randomly in that area I mentioned above. -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
For example, takes 10 (ten) intels, marks on the map an ellipse with the cache position of 400x400. Grab another 10 intels, the ellipse turns from 300x300 and so on until you get 50x50 or smaller. -
Spawn ammo caches and marks
Lucas Andreatta replied to Lucas Andreatta's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It could be inside an ellipse marker, but as it takes the intel, it has to be approaching the possible location of the cache. The goal is to stay dynamic to the point where the creator of the mission has no idea where the cache might be. -
Hello, I am creating an insurgency mission, I already have the script to make the AI drop intel, but I need another one to make Spawn ammo caches and another one for when to get the intel, go creating marks with the distances from the Cache. Intel script: 0 = [] spawn { if (isServer) then { while {true} do { { _unit = _x; if !(_unit getVariable ["hasIntelEVH",false]) then { _unit addEventHandler ["killed",{ params ["_unit"]; if (random 100 < ("droprate" call BIS_fnc_getParamValue) ) then { _suitcase = "Land_Suitcase_F" createVehicle (getpos _unit); [_suitcase,["Pick up INTEL", {params ["_suitcase","_caller","_id"]; hint "you have intel, clever one, you."; [_suitcase,_id] remoteExec ["removeAction"]; deleteVehicle _suitcase } ] ] remoteExec ["addAction",0,_suitcase]; }; }]; _unit setVariable ["hasIntelEVH",true]; }; } forEach (allUnits select {side _x == EAST}); sleep 10; }; }; };
-
I had an idea, every INTEL acquired, add 1 score. When you add (example) 5 score, it activates a trigger to spawn a possible cache area marker. A question: What causes more lag in the mission, scripts or triggers?
-
Taking advantage of the post, I got a way to spawn caches without scripts, but as I do when I get INTEL, there will appear marks on the map approaching the location of the cache?
-
[RELEASE] Random Cache Placement module (RCP)
Lucas Andreatta replied to mons00n's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Something about? -
Hell yeah, it worked !!! thank you so much!