Fixed corrupted module. Added doors. Checked dungeon / teleporter continuity. Replaced Message #02 with a magical sending from Werdna. Removed trash / test areas.
23 lines
597 B
Plaintext
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));
|
|
}
|
|
|