areindeer1586778.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586778.lua
  3. Script Purpose : Waypoint Path for areindeer1586778.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:28:51
  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, 404.64, -34.19, -1337.74, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 402.69, -32.09, -1360.24, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 391.77, -32.09, -1370.93, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 397.4, -32.11, -1373.35, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 403.25, -32.09, -1360.63, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 393.41, -32.09, -1370.87, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 412.94, -33.99, -1335.2, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 407.39, -32.09, -1347.95, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 404.57, -34.24, -1337.59, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 408.65, -32.09, -1346.22, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 391.94, -32.09, -1371.03, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 390.88, -32.16, -1360.14, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 411.81, -32.09, -1351.61, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 412.09, -32.09, -1344.59, 2, math.random(10, 20))
  31. end