createTrigger: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (=)
mNo edit summary
Line 17: Line 17:
| [[Object]] <nowiki>=</nowiki> '''createTrigger''' [type, position] |= Syntax
| [[Object]] <nowiki>=</nowiki> '''createTrigger''' [type, position] |= Syntax


|p1= [type, position]: [[Array]] |= Parameter 1
|p1= type: [[String]] |= Parameter 1
|p2= position: [[Array]] in [[position]] format |= Parameter 2


| [[Object]] |= Return value
| [[Object]] |= Return value

Revision as of 06:34, 25 August 2007

-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: Array in position format
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

Bottom Section