Initial Upload
Initial Upload
This commit is contained in:
14
_module/nss/hal_cilicex.nss
Normal file
14
_module/nss/hal_cilicex.nss
Normal file
@@ -0,0 +1,14 @@
|
||||
void main()
|
||||
{
|
||||
object oPc = GetFirstObjectInArea(OBJECT_SELF);
|
||||
while(GetIsObjectValid(oPc))
|
||||
{
|
||||
if(GetIsPC(oPc))
|
||||
{
|
||||
return;
|
||||
}
|
||||
oPc = GetNextObjectInArea(OBJECT_SELF);
|
||||
}
|
||||
SetLocalInt(OBJECT_SELF, "Quit", TRUE);
|
||||
SetLocalInt(OBJECT_SELF, "DONE", FALSE);
|
||||
}
|
||||
Reference in New Issue
Block a user