Battledale_PRC8/_module/nss/px_marshboss_res.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

15 lines
659 B
Plaintext

void main()
{
object oPC = GetExitingObject();
SendMessageToPC(oPC,"The tunnel seems to have led you out into the Burning Marshes - Perhaps a side-entrance for the High Priest during the temples active days?");
SetLocked(GetObjectByTag("px_stonedoor_tmpl"),FALSE);
if(GetLocalInt(oPC,"BossSpawned") == 1)
{
CreateObject(OBJECT_TYPE_PLACEABLE, "px_sarcophag", GetLocation(GetWaypointByTag("px_sarcophag_spawn")));
DeleteLocalInt(oPC,"BossSpawned");
DestroyObject(GetNearestObjectByTag("px_marsh_boss"));
SetLocked(GetObjectByTag("px_way_upstairs"),TRUE);
AssignCommand(GetObjectByTag("px_way_upstairs"),ActionCloseDoor(GetObjectByTag("px_way_upstairs")));
}
}