percius.lua 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : percius.lua
  3. Script Purpose : Waypoint Path for percius.lua
  4. Script Author : Devn00b
  5. Script Date : 08/05/2020 02:39:36 PM
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 558.92, -16.61, -427.07, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, 562.75, -17.4, -407.2, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 570.45, -17.77, -402.11, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 584.41, -18.42, -399.5, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 597.07, -18.04, -405.27, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 648.18, -11.73, -395.33, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 594.2, -18.67, -407.75, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 585.32, -18.72, -420.84, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 569.08, -17.86, -422.86, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 561.03, -17.35, -410, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 569.08, -17.86, -422.86, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 585.32, -18.72, -420.84, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 594.2, -18.67, -407.75, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 648.18, -11.73, -395.33, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 597.07, -18.04, -405.27, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 584.41, -18.42, -399.5, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 570.45, -17.77, -402.11, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 562.75, -17.4, -407.2, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 558.92, -16.61, -427.07, 2, math.random(0,5))
  36. end