WizardryEE/Module/nss/lvl10_msg02.nss
Jaysyn904 103f315feb Fixed corrupted module
Fixed corrupted module.  Added doors.  Checked dungeon / teleporter continuity.  Replaced Message #02 with a magical sending from Werdna.  Removed trash / test areas.
2023-04-23 22:07:17 -04:00

23 lines
597 B
Plaintext

void main()
{
object oActor;
// Get the creature who triggered this event.
object oPC = GetEnteringObject();
// Only fire for (real) PCs.
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
return;
// Only fire once per PC.
if ( GetLocalInt(oPC, "DO_ONCE__" + GetTag(OBJECT_SELF)) )
return;
SetLocalInt(oPC, "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
// Have "LVL10_MSG02" strike up a conversation with the PC.
oActor = GetNearestObjectByTag("LVL10_MSG02", oPC);
AssignCommand(oActor, ActionStartConversation(oPC, "", FALSE, FALSE));
}