Aantioch_Infernum/_module/nss/start_convo1.nss

17 lines
332 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
//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"));
}