13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
void main()
|
|
{
|
|
if(GetLocalInt(GetModule(),"DomeTrigger") == 0)
|
|
{
|
|
SetLocalInt(GetModule(),"DomeTrigger",1);
|
|
ExecuteScript("dometrigexe", OBJECT_SELF);
|
|
}
|
|
else if(GetLocalInt(GetModule(),"DomeTrigger") == 2)
|
|
{
|
|
ExecuteScript("elluteri_exe_1", OBJECT_SELF);
|
|
}
|
|
}
|