triggerActivated: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma2 | | arma2 | ||
|1.00 | |1.00 | ||
|arg= global | |arg= global | ||
|gr1= Triggers | |gr1= Triggers | ||
| Returns true if the trigger has been activated. | | Returns true if the trigger has been activated. | ||
Line 13: | Line 13: | ||
{{Informative | The engine does not provide precise way of detecting which player activated the trigger. The trigger has a default [[triggerInterval]] or 0.5 sec, so every 0.5 second it checks if there is anyone in the zone. There could be 100 people in the zone on the next scan, which one was the first? There is simply no data for this. You can make an imprecise guess by taking 1st person from [[thisList]] or [[list]]. Also you should do it on server only trigger. This will still not guarantee that person first on the list is the one who was first to activate trigger, but on balance will probably be the one.}} | {{Informative | The engine does not provide precise way of detecting which player activated the trigger. The trigger has a default [[triggerInterval]] or 0.5 sec, so every 0.5 second it checks if there is anyone in the zone. There could be 100 people in the zone on the next scan, which one was the first? There is simply no data for this. You can make an imprecise guess by taking 1st person from [[thisList]] or [[list]]. Also you should do it on server only trigger. This will still not guarantee that person first on the list is the one who was first to activate trigger, but on balance will probably be the one.}} | ||
{{Important | The trigger could be [[local]] or remote but the result returned by this command will be for the trigger activated status on the client that executed the command. See [[createTrigger]] for more info.}} | {{Important | The trigger could be [[local]] or remote but the result returned by this command will be for the trigger activated status on the client that executed the command. See [[createTrigger]] for more info.}} | ||
| [[triggerActivated]] trigger | | [[triggerActivated]] trigger | ||
|p1= trigger: [[Object]] | |p1= trigger: [[Object]] | ||
| [[Boolean]] | | [[Boolean]] | ||
|x1= <code>[[if]] ([[triggerActivated]] trg1) [[then]] { | |x1= <code>[[if]] ([[triggerActivated]] trg1) [[then]] { | ||
{{cc|code}} | {{cc|code}} | ||
};</code> | };</code> | ||
| [[setTriggerActivation]], [[triggerActivation]], [[triggerInterval]], [[setTriggerInterval]], [[enableSimulation]], [[simulationEnabled]] | | [[setTriggerActivation]], [[triggerActivation]], [[triggerInterval]], [[setTriggerInterval]], [[enableSimulation]], [[simulationEnabled]] | ||
}} | }} | ||
Revision as of 11:25, 18 January 2021
Description
- Description:
- Returns true if the trigger has been activated.
- Groups:
- Triggers
Syntax
- Syntax:
- triggerActivated trigger
- Parameters:
- trigger: Object
- Return Value:
- Boolean
Examples
- Example 1:
if (triggerActivated trg1) then { // code };
Additional Information
- See also:
- setTriggerActivationtriggerActivationtriggerIntervalsetTriggerIntervalenableSimulationsimulationEnabled
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- 14:50, 9 June 2015 (CEST)
- MisterGoodson
- If trigger already activated at least once, triggerActivated will only return false if trigger is set to activate Repeatedly.
In other words, a trigger set to activate Once will always return true once activated at least once (even if trigger is no longer activated).