areindeer1586777.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586777.lua
  3. Script Purpose : Waypoint Path for areindeer1586777.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:28:53
  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, 376.73, -32.06, -1394.31, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 391.93, -32.06, -1394.09, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 414.16, -34.33, -1394.11, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 389.08, -32.08, -1368.54, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 406.83, -32.6, -1383.78, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 392.15, -32.07, -1381.65, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 403.97, -32.84, -1399.92, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 387.5, -32.06, -1375.94, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 394.42, -32.06, -1412.07, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 377.8, -32.06, -1404.68, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 410.07, -32.09, -1353.24, 2, math.random(10, 20))
  28. end