areindeer1586731.lua 925 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586731.lua
  3. Script Purpose : Waypoint Path for areindeer1586731.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:28:55
  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, 354.2, -31.09, -1420.93, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 349.18, -29.88, -1413, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 342.13, -29.73, -1419.61, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 349.62, -30.15, -1417.38, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 340.87, -29.47, -1418.52, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 346.41, -29.92, -1408.19, 2, math.random(10, 20))
  23. end