Available since Version 1.18.
Specify the locator whose triggers will be used for the insidetrigger / outsidetrigger conditions.
Scope
This command should be called between calls to AddCondition and CloseCondition in a mission's initialisation script.
Syntax
MFK
Lua
SetCondTrigger( locator_name );Game.SetCondTrigger( locator_name )- locator_name: The name of the locator whose triggers will be used for the condition.
Examples
MFK
Lua
AddCondition("insidetrigger");
SetCondTrigger("z2phone1");
CloseCondition();Game.AddCondition("insidetrigger")
Game.SetCondTrigger("z2phone1")
Game.CloseCondition()