fanthis.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : fanthis.lua
  3. Script Purpose : Waypoint Path for fanthis.lua
  4. Script Author : Devn00b
  5. Script Date : 07/31/2020 07:33:49 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, 584.13, -18.24, -408.66, 2, math.random(0,8))
  18. MovementLoopAddLocation(NPC, 621.86, -15.32, -403.71, 2, math.random(0,8))
  19. MovementLoopAddLocation(NPC, 652.44, -11.39, -395.35, 2, math.random(0,8))
  20. MovementLoopAddLocation(NPC, 644.06, -13.16, -365.23, 2, math.random(0,8))
  21. MovementLoopAddLocation(NPC, 643.87, -18.16, -325.84, 2, math.random(0,8))
  22. MovementLoopAddLocation(NPC, 644.06, -13.16, -365.23, 2, math.random(0,8))
  23. MovementLoopAddLocation(NPC, 652.44, -11.39, -395.35, 2, math.random(0,8))
  24. MovementLoopAddLocation(NPC, 621.86, -15.32, -403.71, 2, math.random(0,8))
  25. MovementLoopAddLocation(NPC, 584.13, -18.24, -408.66, 2, math.random(0,8))
  26. end