File Reorganization. Initialized ratdog_creature hak & added Project Q overrides & other models. Continued dynamic swapover & upgrade.
21 lines
342 B
Plaintext
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);
|
|
|
|
}
|