Firebro113
Member-
Content Count
25 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout Firebro113
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Firebro113 started following Waypoint Condition Not Working, Media Keys Won't Work with Itunes, thisList Does Not Work without Activation and and 1 other
-
Weirdly, when in Arma 3, the media keys do not function at all for iTunes. In all other programs, they work with iTunes without any problem. Also, they can work with Spotify inside Arma 3, it is just iTunes that has the problem. They work with the Steam overlay, but that's more of a workaround, not a solution.
-
thisList Does Not Work without Activation
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@pierremgi Ok, thank you for the explanation. What about Seized by? When I tried, it seemed like it takes into account all units. -
thisList Does Not Work without Activation
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Didn't see that, only looked at scripting reference -
thisList Does Not Work without Activation
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@sarogahtyp Can't, website won't let me. @Larrow So, you're saying my guess is correct, right? The wiki didn't explicitly state it, so wasn't sure. Well that's kind of the point, I was simply testing how thisList works, I would obviously include an actual condition in missions. Edit: Also, thank you for the solution, didn't see it at first. -
thisList Does Not Work without Activation
Firebro113 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I have 2 triggers placed side-by-side that 5 BLUFOR units are inside, with these attributes: Trigger 1: Activation BLUFOR, Type Present Expression: condition true, onActivation "hint str (count thisList);" Timer: None Trigger 2: Activation None Expression: (identical to Trigger 1) Timer: 1 sec The problem is that the Trigger 1's hint message displays "5" while Trigger 2's displays "0", seemingly indicating that thisList does not work when there is no activation conditon. At first, I thought it was the units not initializing right at the start for thisList to pick up, but the timer disproves that. How could I fix this? -
Skip Waypoint Trigger Type Skips Task
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Just checked, the skip waypoint type is required for the connection to work. Edit: Using a different trigger for the task modules worked, thank you. -
Skip Waypoint Trigger Type Skips Task
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Well, the trigger isn't activated at the start, I have the hint message in On Activation to check this. Is separating the triggers necessary, or is it just good practice for organization, etc.? And do you mean that as long as a waypoint is connected to a trigger with Set Trigger Activation, it will skip that waypoint even if the trigger type is not skip waypoint? -
Skip Waypoint Trigger Type Skips Task
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Also, the second task is created regardless at the start of the mission. -
Skip Waypoint Trigger Type Skips Task
Firebro113 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
In a mission, I have one task created at the start and set as complete when a trigger becomes active and another task that has its create module synced to the trigger so that it is created when the trigger becomes active. The trigger also needs to cause groups to move on to the next waypoint, so its type is set to Skip Waypoint. However, when the type is set, the first task automatically completes as soon as I start playing, and the next task is assigned. If I change the type to none, this does not happen. What's even weirder is that the trigger doesn't activate until much later, I have a hint message in On Activation that does not show up until much later when the trigger is actually activated. -
Waypoint Condition Not Working
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Ok, thank you, I'll try it. -
Waypoint Condition Not Working
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Ok, thank you for the info. Can you tell why my code isn't working? -
Waypoint Condition Not Working
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@pierremgi Thank you, I will try it. @f2k sel Sorry, I wasn't very clear. If a group has a Destroy Waypoint with a condition of [triggerActivated trigger1], does the trigger need to be activated & the group has to destroy the target? Or is it that if trigger1 is activated, it will move to the next waypoint regardless of whether the target was destroyed or not? Edit: I didn't read the flowchart right, so it is complete then check, right? -
Waypoint Condition Not Working
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@JohnKalo Would I need to set the Type of the trigger to Skip Waypoint, or would it do the same thing without it too? @f2k sel Doesn't changing the condition from true make it so that the waypoint doesn't have to be completed? Or am I misunderstanding and does it make it so that the waypoint has to complete & the condition has to be true? -
Waypoint Condition Not Working
Firebro113 replied to Firebro113's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Ask nicely my friend. What I said in code format: trigger1: activates when BLUFOR takes over area (which it does) Seek And Destroy waypoint: condition: triggerActivated trigger1 onactivation: HQ sidechat "test1" (this is just to make checking easier) trigger2 (the only purpose of this is to demonstrate that the trigger and sidechat are working): condition: triggerActivated trigger1 onactivation: HQ sidechat "test2" HQ sends the "test2" message but not the "test1" -
I have a triggerActivated statement in the condition expression of a waypoint so that it completes whenever that trigger is set true, and I have a radio message in OnActivation to make sure of this. However, the waypoint never completes, and the radio message never appears. When I have the exact same lines of code in another trigger, it works, so I doubt it is a problem with the original trigger or the code itself.