zigzagtshirt
Member-
Content Count
38 -
Joined
-
Last visited
-
Medals
Everything posted by zigzagtshirt
-
Damaging Land_SatellitePhone_F
zigzagtshirt replied to JB47394's topic in ARMA 3 - MISSION EDITING & SCRIPTING
use getDammage to check to see if damage changes (even if it isn't visible) after shooting at it, etc. If it does, have a condition that checks to see if it equals 0. From there you could delete the object to simulate it being destroyed, or even swap it with another junky looking object. I honestly don't know if this would work and I'm not home at the moment to test. -
Spawning in bottom left ocean in custom mission
zigzagtshirt replied to duch3636's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Place the following in the description.ext respawnonstart=-1; edit: sorry I didn't really read your issue in full. This probably won't work. My bad. -
How should I go about getting a random position within a trigger area (circle - 500m) to spawn units on? I have the following so far: _random_pos_in_trigger = trigger_spawn call BIS_fnc_randomPosTrigger; Won't this pick a random position that isn't necessary safe for a unit spawn (e.g., on a rock, in the water, etc.)? Is there a way to use BIS_fnc_findSafePos with this to make sure I'm not spawning units in unsafe locations? Many thanks.
-
Random pos in trigger area
zigzagtshirt replied to zigzagtshirt's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks! Finally got it to work with a solution I came up with (at work so I don't have the script on me). But I like yours a lot better so I think I'm going to use it instead since it's a lot less complicated- thanks! Another problem now: I'm trying to select a random trigger to be "trigger_spawn", so I have three triggers named "trigger_spawn1", "trigger_spawn2", "trigger_spawn3" in an array and I select one from random and pass it to a variable. However, when I execute the BIS_fnc_randomPosTrigger on this variable, it will only select the center of the trigger every time. When I use the actual name of the trigger instead of the variable I created with the trigger name, it works. Works: _random_pos_in_trigger = trigger_spawn call BIS_fnc_randomPosTrigger; // Just like in your solution; returns random location within trigger area Doesn't Work: _select_trigger_spawn = _trigger_spawn_array call BIS_fnc_selectRandom; _random_pos_in_trigger = select_trigger_spawn call BIS_fnc_randomPosTrigger; // Just returns the center of the trigger area In order to try to isolate the issue I used triggerArea on my variable that has the randomly picked trigger from the array, and received the "string, expected object" error. Now I'm stuck. Any idea how to make this work? Again, trying to select trigger from array, and having that serve as the trigger to execute BIS_fnc_randomPosTrigger on. _area_of_trigger = triggerArea select_trigger_spawn; // ERROR -
Random pos in trigger area
zigzagtshirt replied to zigzagtshirt's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Will either of these methods return a SAFE position to spawn units on? -
I made an all-in-one Hostage Rescue template for missionmakers
zigzagtshirt replied to 4's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Got it working for my needs, thanks. -
I made an all-in-one Hostage Rescue template for missionmakers
zigzagtshirt replied to 4's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Is there an easy way to make this work without the trigger areas part? I'd like to only use the hostage setup and carry parts of it. -
Super Simple Surrender script
zigzagtshirt replied to Mynock's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Very neat, thanks for sharing! Does it take into account how many other units are alive in the group when determining if the unit should surrender? -
Vanilla Revive System and saving unit loadouts
zigzagtshirt replied to jaynic's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Having the same problem. Spent hours and hours trying to make something work. Unit always respawns without rifle because the loadout isn't saved until after he has dropped his rifle when using vanilla revive. Hope someone on here can help. -
Where are camo nets in the editor?
zigzagtshirt posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Can someone please tell me where I can find the camo nets in the editor? I used them a dozen times before but today for some reason I can't find the dang section in the editor where they are stored. I have looked through each list 10 times and I can't find them. So, either I'm blind or they vanished for some reason. ---------- Post added at 18:09 ---------- Previous post was at 18:03 ---------- Nevermind. For some reason a mod I am using removed them. When I disabled the mod, they came back. Weird. Has anything like this happened to anyone else before? -
Player looking for squad (not for squads to post looking for players!)
zigzagtshirt replied to Placebo's topic in ARMA 2 & OA - SQUADS AND FANPAGES
Looking for a couple of guys to play COOP with. I'm not really into the whole "professional, elitist" squads; too serious for me. Yet, I want to play with some guys who actually take the game seriously, know what they are doing, and know how to be tactical. I've been working a lot with editing lately, so if you want to do custom missions, I'm sure I can fire up something if you don't have any or don't want to play the prepackaged missions. Message me. -
Great idea, I second this!
-
looks pretty good. nice job!