tomb_priest.lua 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. --[[
  2. Script Name : tomb_priest.lua
  3. Script Purpose : Waypoint Path for tomb_priest.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:08:16 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. local Level = GetLevel(NPC)
  10. local level1 =14
  11. local level2 = 15
  12. local difficulty1 = 6
  13. local hp1 = 765
  14. local power1 = 240
  15. local difficulty2 = 6
  16. local hp2 = 890
  17. local power2 = 270
  18. if Level == level1 then
  19. SpawnSet(NPC, "difficulty", difficulty1)
  20. SpawnSet(NPC, "hp", hp1)
  21. SpawnSet(NPC, "power", power1)
  22. elseif Level == level2
  23. then
  24. SpawnSet(NPC, "difficulty", difficulty2)
  25. SpawnSet(NPC, "hp", hp2)
  26. SpawnSet(NPC, "power", power2)
  27. end
  28. waypoints(NPC)
  29. end
  30. function hailed(NPC, Spawn)
  31. FaceTarget(NPC, Spawn)
  32. end
  33. function respawn(NPC)
  34. end
  35. function waypoints(NPC)
  36. MovementLoopAddLocation(NPC, 235.11, -6.86, -144.42, 2, math.random(0,10))
  37. MovementLoopAddLocation(NPC, 233.06, -6.86, -134.49, 2, math.random(0,10))
  38. MovementLoopAddLocation(NPC, 254.31, -6.86, -133.44, 2, math.random(0,10))
  39. MovementLoopAddLocation(NPC, 249.53, -6.86, -136.86, 2, math.random(0,10))
  40. MovementLoopAddLocation(NPC, 248.3, -6.86, -148.03, 2, math.random(0,10))
  41. MovementLoopAddLocation(NPC, 238.6, -6.86, -133.95, 2, math.random(0,10))
  42. MovementLoopAddLocation(NPC, 237.02, -6.86, -145.13, 2, math.random(0,10))
  43. MovementLoopAddLocation(NPC, 233.42, -6.86, -148.83, 2, math.random(0,10))
  44. MovementLoopAddLocation(NPC, 237.63, -6.86, -149.24, 2, math.random(0,10))
  45. MovementLoopAddLocation(NPC, 240.23, -6.86, -142.28, 2, math.random(0,10))
  46. MovementLoopAddLocation(NPC, 246.29, -6.86, -141.96, 2, math.random(0,10))
  47. MovementLoopAddLocation(NPC, 235.85, -6.86, -143.77, 2, math.random(0,10))
  48. MovementLoopAddLocation(NPC, 246.29, -6.86, -141.96, 2, math.random(0,10))
  49. MovementLoopAddLocation(NPC, 240.23, -6.86, -142.28, 2, math.random(0,10))
  50. MovementLoopAddLocation(NPC, 237.63, -6.86, -149.24, 2, math.random(0,10))
  51. MovementLoopAddLocation(NPC, 233.42, -6.86, -148.83, 2, math.random(0,10))
  52. MovementLoopAddLocation(NPC, 237.02, -6.86, -145.13, 2, math.random(0,10))
  53. MovementLoopAddLocation(NPC, 238.6, -6.86, -133.95, 2, math.random(0,10))
  54. MovementLoopAddLocation(NPC, 248.3, -6.86, -148.03, 2, math.random(0,10))
  55. MovementLoopAddLocation(NPC, 249.53, -6.86, -136.86, 2, math.random(0,10))
  56. MovementLoopAddLocation(NPC, 254.31, -6.86, -133.44, 2, math.random(0,10))
  57. MovementLoopAddLocation(NPC, 233.06, -6.86, -134.49, 2, math.random(0,10))
  58. MovementLoopAddLocation(NPC, 235.11, -6.86, -144.42, 2, math.random(0,10))
  59. end