HouseStatue.lua 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. --[[
  2. Script Name : SpawnScripts/TheCauldronHollow/HouseStatue.lua
  3. Script Purpose : Totem in Claudron Hollow
  4. Script Author : alfa24t
  5. Script Date : 12/10/2022
  6. Script Notes : SpawnID 3390031 3390032 3390033
  7. This zone is no longer raid (all the named mobs and placeholders are heroic) and the access quest requirement is gone so the zone can be entered any time.
  8. When entering this zone you get an 18-hours "failure lockout." Once you kill the Torig's descendant it changes to a 35-hours success lockout. Killing the other nameds does not count as a success.
  9. There are eleven totems in the instance. When they are activated, three groups of lost souls spawn, each at one of the eleven houses. It appears two are either bugged or intentionally different, as killing the first groups spawns only two named groups, and three are needed to spawn the Torig.
  10. When each group is cleared, usually one of eight nameds (level 34 heroic with two assistant mobs in their group) spawns immediately at the same house. If three groups spawn and all three named groups are cleared, the Vampire Descendant of the Torig spawns at the zone-in gate, and when you approach begins walking to the central area with his two helpers. If you click one of the two-named totems (eight and nine as listed below), the Torig will not spawn. (This happened in a raid when the zone was still epic as well on one occasion at least.) All the nameds give AA for first kills.
  11. The eight named NPC mobs are, in no particular order:
  12. Burning Inferno
  13. The Drained Soul of Betrayal
  14. Bumwuk the Oppressor
  15. Anoyaths Temptress
  16. Haunted Nightmare
  17. The Restless Specter
  18. Enchanted Dreams of the Dead (giant Billy)
  19. The Troll Plunderer
  20. One or two of the houses are set well back from the others so it's easy to miss the totem. Starting at the first house on the left as you enter and moving clockwise, activating the totems spawns these named groups (once the "placeholders" are cleared):
  21. First totem: Anoyaths Temptress, The Restless Specter, The Troll Plunderer
  22. Second totem: Haunted Nightmare, Enchanted Dreams of the Dead, The Restless Specter
  23. Third totem: Enchanted Dreams of the Dead, Burning Inferno, The Restless Specter
  24. Fourth totem: Burning Inferno, Bumwuk the Oppressor, The Drained Soul of Betrayal
  25. Fifth totem: Bumwuk the Oppressor, Anoyaths Temptress, The Troll Plunderer
  26. Sixth totem: Anoyaths Temptress, The Restless Specter, Haunted Nightmare
  27. Seventh totem: The Restless Specter, The Troll Plunderer, Anoyaths Temptress
  28. Eighth totem: (spawns three groups of lost souls but the one at this house does not spawn a named, and consequently no Torig when the others were cleared) The Restless Specter, The Troll Plunderer
  29. Ninth totem: (same problem as eighth totem, with the number 8 house not spawning a named) The Drained Soul of Betrayal, Enchanted Dreams of the Dead
  30. Tenth totem: Burning Inferno, The Troll Plunderer, The Drained Soul of Betrayal
  31. Eleventh (last) totem (to right as you enter): The Troll Plunderer, Haunted Nightmare, Bumwuk the Oppressor
  32. MISSING SPAWN
  33. Burning Inferno
  34. The Drained Soul of Betrayal
  35. Enchanted Dreams of the Dead (giant Billy)
  36. --]]
  37. function spawn(NPC)
  38. end
  39. function respawn(NPC)
  40. spawn(NPC)
  41. end
  42. function casted_on(NPC, Spawn, Message)
  43. if Message == "use" then
  44. conversation = CreateConversation()
  45. AddConversationOption(conversation, "I would like to travel.")
  46. AddConversationOption(conversation, "Nowhere.")
  47. StartConversation(conversation, NPC, Spawn, "Greetings traveler, how can I assist you today?")
  48. end
  49. end