14 lines
287 B
Plaintext
14 lines
287 B
Plaintext
|
void main()
|
||
|
{
|
||
|
if(!GetLocalInt(OBJECT_SELF, "DONE"))
|
||
|
{
|
||
|
ExecuteScript("hal_cilisc", OBJECT_SELF);
|
||
|
SetLocalInt(OBJECT_SELF, "DONE", TRUE);
|
||
|
|
||
|
if(GetLocalInt(OBJECT_SELF, "Quit"))
|
||
|
{
|
||
|
SetLocalInt(OBJECT_SELF, "Quit", FALSE);
|
||
|
}
|
||
|
}
|
||
|
}
|