Initial upload
Initial upload
This commit is contained in:
13
_module/nss/aw_startglow.nss
Normal file
13
_module/nss/aw_startglow.nss
Normal file
@@ -0,0 +1,13 @@
|
||||
void main()
|
||||
{
|
||||
object oEnterer = GetEnteringObject();
|
||||
int iDoOnce = GetLocalInt(OBJECT_SELF, "iDoOnce");
|
||||
|
||||
if (GetIsPC(oEnterer) == TRUE && iDoOnce == FALSE)
|
||||
{
|
||||
object AWGLOWSTONE_ = GetObjectByTag("AWGLOWSTONE_01");
|
||||
SignalEvent(AWGLOWSTONE_, EventUserDefined(1437));
|
||||
SetLocalInt(OBJECT_SELF, "iDoOnce", TRUE);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user