RATDOG/_module/nss/talktopc.nss
Jaysyn904 e870de8a20 File Reorganization
File Reorganization.  Initialized ratdog_creature hak & added Project Q overrides & other models.  Continued dynamic swapover & upgrade.
2021-10-02 03:15:34 -04:00

21 lines
342 B
Plaintext

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, "");
ExecuteScript("nw_c2_default2", OBJECT_SELF);
}