RoT2_PRC8/_module/nss/aw_startglow.nss

14 lines
357 B
Plaintext
Raw Normal View History

2023-09-25 18:13:22 -04:00
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);
}
}