shriller1.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : shriller1.lua
  3. Script Purpose : Waypoint Path for shriller1.lua
  4. Script Author : Devn00b
  5. Script Date : 05/09/2020 09:58:37 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -42.5, -0.1, -77.41, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -41.49, 0.27, -80.14, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -38.8, -0.1, -78.38, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -39.26, -0.09, -74.92, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -40.12, -0.11, -76.88, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -39.31, -0.08, -80.33, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -43.22, 0.23, -79.04, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -42.03, -0.1, -74.4, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -40.82, -0.1, -75.06, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -42.03, -0.1, -74.4, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -43.22, 0.23, -79.04, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -39.31, -0.08, -80.33, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -40.12, -0.11, -76.88, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -39.26, -0.09, -74.92, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -38.8, -0.1, -78.38, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, -41.49, 0.27, -80.14, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, -42.5, -0.1, -77.41, 2, math.random(0,5))
  35. end