2021-08-29 23:34:48 -04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
|
|
|
|
object oPC = GetLastPerceived();
|
|
|
|
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
|
|
|
|
if (!GetLastPerceptionSeen()) return;
|
|
|
|
int DoOnce = GetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF));
|
|
|
|
|
|
|
|
if (DoOnce==TRUE) return;
|
|
|
|
|
|
|
|
SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE);
|
|
|
|
|
|
|
|
ActionStartConversation(oPC, "");
|
|
|
|
|
2021-10-02 03:15:34 -04:00
|
|
|
ExecuteScript("nw_c2_default2", OBJECT_SELF);
|
|
|
|
|
2021-08-29 23:34:48 -04:00
|
|
|
}
|