deathly_scarab2.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --[[
  2. Script Name : deathly_scarab2.lua
  3. Script Purpose : Waypoint Path for deathly_scarab2.lua
  4. Script Author : Devn00b
  5. Script Date : 05/17/2020 02:17:17 AM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 117.41, 7, -125.51, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 128.68, 7, -125.61, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 128.38, 7.08, -165.52, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 141.94, 6.92, -173.49, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 147.67, 7.18, -171.5, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 152.35, 7.05, -167.47, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 152.34, 6.83, -146.97, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 153.57, 7.02, -140.22, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 169.06, 6.95, -141.72, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 179.34, 7, -151.43, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 181.03, 6.87, -170.66, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 176.52, 7.35, -174.23, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 165.47, 6.9, -174.88, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 160.69, 6.89, -184.51, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 165.47, 6.9, -174.88, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 176.52, 7.35, -174.23, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 181.03, 6.87, -170.66, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 179.34, 7, -151.43, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 169.06, 6.95, -141.72, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 153.57, 7.02, -140.22, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 152.34, 6.83, -146.97, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 152.35, 7.05, -167.47, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 147.67, 7.18, -171.5, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 141.94, 6.92, -173.49, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, 128.38, 7.08, -165.52, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, 128.68, 7, -125.61, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, 117.41, 7, -125.51, 2, math.random(0,5))
  45. end