amorakdevourer428699.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428699.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428699.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:08:43
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "3")
  10. SpawnSet(NPC, "difficulty", "2")
  11. SpawnSet(NPC, "hp", 30)
  12. SpawnSet(NPC, "power", 15)
  13. waypoints(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end
  21. function waypoints(NPC)
  22. MovementLoopAddLocation(NPC, 264.28, -4.53, 49.72, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, 263.98, -4.56, 55.56, 2, 0)
  24. MovementLoopAddLocation(NPC, 263.18, -4.56, 58.74, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, 260.72, -4.39, 52.46, 2, 0)
  26. MovementLoopAddLocation(NPC, 256.37, -3.95, 44.22, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, 258.12, -3.96, 49.49, 2, 0)
  28. MovementLoopAddLocation(NPC, 265.65, -4.54, 56.77, 2, math.random(14, 25))
  29. MovementLoopAddLocation(NPC, 269.56, -4.41, 54.4, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, 272.08, -4.11, 48.89, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, 269.31, -4.49, 51.62, 2, math.random(14, 25))
  32. MovementLoopAddLocation(NPC, 265.11, -4.51, 57.67, 2, math.random(14, 25))
  33. MovementLoopAddLocation(NPC, 259.03, -5.86, 66.77, 2, math.random(14, 25))
  34. MovementLoopAddLocation(NPC, 263.67, -4.56, 57.86, 2, math.random(14, 25))
  35. MovementLoopAddLocation(NPC, 264.28, -4.56, 56.19, 2, 0)
  36. MovementLoopAddLocation(NPC, 268.36, -4.53, 51.36, 2, math.random(14, 25))
  37. end