createTrigger: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (changed global to local variable to make clear the variable)
No edit summary
Line 34: Line 34:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on 26 Mar, 2008</dd>
<dt class="note">'''[[User:Dr_Eyeball|Dr_Eyeball]]'''</dt><dd class="note">
[[Image:effects_local.gif]] The created trigger will be local to the client it was created on.
</dd>


<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 04:39, 26 March 2008

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Creates a new trigger on the given position. An object of the given type is created; this type must be a class name in CfgNonAIVehicles or CfgVehicles with simulation = detector. An array containing all units that have activated the trigger is available via list triggerobj.
Groups:
Uncategorised

Syntax

Syntax:
Object = createTrigger ["type", Position]
Parameters:
type: String
Position
Return Value:
Object

Examples

Example 1:
_trg=createTrigger["EmptyDetector",getPos player]; _trg setTriggerArea[5,5,0,false];
_trg setTriggerActivation["CIV","PRESENT",true];
_trg setTriggerStatements["this", "hint 'Civilian near player'", "hint 'no civilian near'"];

Additional Information

See also:
setTriggerActivationsetTriggerAreasetTriggerStatementssetTriggerTextsetTriggerTimeoutsetTriggerType

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

Posted on 26 Mar, 2008
Dr_Eyeball
effects local.gif The created trigger will be local to the client it was created on.

Bottom Section