areindeer1586732.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586732.lua
  3. Script Purpose : Waypoint Path for areindeer1586732.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:28:57
  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, 418.67, -36.45, -1440.08, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 416.31, -36.38, -1429.07, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 425.94, -36.71, -1430.79, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 418.49, -36.41, -1439.46, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 424.43, -36.68, -1433.1, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 411.17, -36.38, -1436.69, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 416.21, -36.38, -1428.74, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 425.56, -36.95, -1440.55, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 418.5, -36.38, -1437.3, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 417.11, -36.31, -1425.97, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 422.51, -36.62, -1437.09, 2, math.random(10, 20))
  28. end