Updated the final boss battle to be closer to pen and paper. Created souless minions for final battle. Updated Wand of Orcus to be closer to pen and paper. Fixed onAcquire bugs with teleporter stones. Added several missing magical items that are part of the soulless minions gear. Fixed respawning web placeable. Put Oracle & Trabitz on proper factions. Fixed XP system so powerful foes still grant XP. Fixed size of Orcus model. Full compile.
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
|
|
//Put this on action taken in the conversation editor
|
|
void main()
|
|
{
|
|
object oSpawn;
|
|
location lTarget;
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oOrcusWP = GetWaypointByTag("orcus1");
|
|
object oEaterWP = GetWaypointByTag("eater_orcus001");
|
|
object oEmbraceWP = GetWaypointByTag("embrace_orcus001");
|
|
object oHandWP = GetWaypointByTag("hand_orcus001");
|
|
object oCalogeraWP = GetWaypointByTag("npc_calogera");
|
|
|
|
lTarget = GetLocation(oOrcusWP);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "themaster001", lTarget);
|
|
|
|
lTarget = GetLocation(oEaterWP);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "eater_orcus001", lTarget);
|
|
|
|
lTarget = GetLocation(oEmbraceWP);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "embrace_orcus001", lTarget);
|
|
|
|
lTarget = GetLocation(oHandWP);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "hand_orcus001", lTarget);
|
|
|
|
lTarget = GetLocation(oCalogeraWP);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "npc_calogera", lTarget);
|
|
|
|
//oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "orcus", lTarget);
|
|
}
|