PWE_PRC8/_module/nss/start_convo1.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

17 lines
332 B
Plaintext

//Goes on creature's OnHeartbeat. Fires when not fighting or talking.
void main()
{
object oPC = GetLastPerceived();
if (!GetIsPC(oPC)) return;
if (!GetLastPerceptionSeen()) return;
if (!GetIsPC(oPC)) return;
object oTarget = GetObjectByTag("Ruvilictes");
AssignCommand(oTarget, ActionStartConversation(oPC, "convo_ruv"));
}