edward.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. --[[
  2. Script Name : edward.lua
  3. Script Purpose : Waypoint Path for edward.lua
  4. Script Author : Devn00b
  5. Script Date : 07/31/2020 07:33:41 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, 711.38, -17.06, -318.18, 2, math.random(0,20))
  18. MovementLoopAddLocation(NPC, 721.84, -17.08, -323.21, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 718.1, -17.11, -331.35, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 702.47, -17.38, -325.88, 2, math.random(0,8))
  21. MovementLoopAddLocation(NPC, 691.47, -18.94, -279.4, 2, math.random(0,8))
  22. MovementLoopAddLocation(NPC, 660.2, -19.01, -270.46, 2, math.random(0,8))
  23. MovementLoopAddLocation(NPC, 651.47, -21.25, -289.71, 2, math.random(0,8))
  24. MovementLoopAddLocation(NPC, 650.19, -21.73, -304.1, 2, math.random(0,8))
  25. MovementLoopAddLocation(NPC, 645.24, -13.37, -359.65, 2, math.random(0,8))
  26. MovementLoopAddLocation(NPC, 668.52, -11.63, -366.57, 2, math.random(0,8))
  27. MovementLoopAddLocation(NPC, 701.69, -15.2, -377.6, 2, math.random(0,8))
  28. MovementLoopAddLocation(NPC, 703.02, -14.13, -401.34, 2, math.random(0,8))
  29. MovementLoopAddLocation(NPC, 704.74, -15.76, -418.69, 2, math.random(0,8))
  30. MovementLoopAddLocation(NPC, 703.02, -14.13, -401.34, 2, math.random(0,8))
  31. MovementLoopAddLocation(NPC, 701.69, -15.2, -377.6, 2, math.random(0,8))
  32. MovementLoopAddLocation(NPC, 668.52, -11.63, -366.57, 2, math.random(0,8))
  33. MovementLoopAddLocation(NPC, 645.24, -13.37, -359.65, 2, math.random(0,8))
  34. MovementLoopAddLocation(NPC, 650.19, -21.73, -304.1, 2, math.random(0,8))
  35. MovementLoopAddLocation(NPC, 651.47, -21.25, -289.71, 2, math.random(0,8))
  36. MovementLoopAddLocation(NPC, 660.2, -19.01, -270.46, 2, math.random(0,8))
  37. MovementLoopAddLocation(NPC, 691.47, -18.94, -279.4, 2, math.random(0,8))
  38. MovementLoopAddLocation(NPC, 702.47, -17.38, -325.88, 2, math.random(0,8))
  39. MovementLoopAddLocation(NPC, 718.1, -17.11, -331.35, 2, math.random(0,10))
  40. MovementLoopAddLocation(NPC, 721.84, -17.08, -323.21, 2, math.random(0,15))
  41. MovementLoopAddLocation(NPC, 711.38, -17.06, -318.18, 2, math.random(0,20))
  42. end