areindeer1586728.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586728.lua
  3. Script Purpose : Waypoint Path for areindeer1586728.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:29:08
  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, 74.41, -36.68, -1465.08, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 74.08, -36.68, -1455.09, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 83.9, -36.71, -1465.88, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 75.17, -36.68, -1452.89, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 77.43, -36.68, -1462.89, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 73.87, -36.68, -1453.73, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 82.32, -36.68, -1453.49, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 78.62, -36.68, -1462.05, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 68.62, -36.68, -1458.7, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 82.98, -36.68, -1459.9, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 75.57, -36.68, -1455.78, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 76.72, -36.68, -1447.55, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 79.24, -36.68, -1455.07, 2, math.random(10, 20))
  30. end