

SnowmaneYT
Member-
Content Count
8 -
Joined
-
Last visited
-
Medals
Community Reputation
5 NeutralAbout SnowmaneYT
-
Rank
Private
-
doMove, how to know when is completed?
SnowmaneYT replied to SnowmaneYT's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I resolved using waitUntil {unitReady _this}; Thanks anyway, i going to test your solution to learn more! -
Hello, _grp = group _this; _wp = _grp addWaypoint [_rndDest, 0]; _wp setwaypointtype "MOVE"; I have this to add a waypoint from an array (_rndDest) to a unit (playable). This code is executed via execVM when the unit spawn for first time and when die. All is working fine when spawn for first time, but when respawn i get and error in _grp = group _this; The error say something about missing vector. Any help, please? Thanks!
-
- group
- addwaypoint
-
(and 1 more)
Tagged with:
-
doMove, how to know when is completed?
SnowmaneYT replied to SnowmaneYT's topic in ARMA 3 - MISSION EDITING & SCRIPTING
This may work, thanks so much! 🙂 -
doMove, how to know when is completed?
SnowmaneYT posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello, I have _nul = _this doMove _destination; to move a unit. What i need is when the unit reached the destination, wait for x time and then doMove to another destination. So, the big question here is, how i can detect when doMove is completed? Thanks! -
synchronizeObjectsAdd in onPlayerRespawn.sqf
SnowmaneYT replied to SnowmaneYT's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks so much for the info, i'm sure the answer is there. -
synchronizeObjectsAdd in onPlayerRespawn.sqf
SnowmaneYT replied to SnowmaneYT's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Is an AI controlling the player unit... -
synchronizeObjectsAdd in onPlayerRespawn.sqf
SnowmaneYT replied to SnowmaneYT's topic in ARMA 3 - MISSION EDITING & SCRIPTING
BLUFOR_AI is just a variable name refering to moduleSpawnAI in order to get sector tactics working. Player AI = AI controlled player if no human is controlling it. I try to explain in other words. A unit (player in this case) have a ini param of "variableName synchronizeObjectsAdd [this];". When this unit die, the parameter need to be inserted again because the AI stop doing sector tactics, and one way to do it is from onPlayerRespawn.sqf file. I tried with "variableName synchronizeObjectsAdd [player];" with no luck. Any help, please? Thanks. -
synchronizeObjectsAdd in onPlayerRespawn.sqf
SnowmaneYT posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello, I have a player AI with "BLUFOR_AI synchronizeObjectsAdd [this];" as ini code. When die he needs the code again and i'm trying to do adding "BLUFOR_AI synchronizeObjectsAdd [player];" into onPlayerRespawn.sqf with no effect. How i can get working? Thanks!