abonecutterfishRoam3.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/Classic_forest/abonecutterfishRoam3.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.10.13 03:10:43
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. AddTimer(NPC, 6000, "waypoints")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end
  19. function waypoints(NPC)
  20. MovementLoopAddLocation(NPC, 984.75, -24.37, -781.6, 1, 0)
  21. MovementLoopAddLocation(NPC, 983.32, -24.35, -776.16, 1, math.random(5,10))
  22. MovementLoopAddLocation(NPC, 983.32, -24.36, -776.16, 1, 0)
  23. MovementLoopAddLocation(NPC, 987.39, -24.36, -781.28, 1, math.random(5,10))
  24. MovementLoopAddLocation(NPC, 987.39, -24.36, -781.28, 1, 0)
  25. MovementLoopAddLocation(NPC, 987, -24.37, -777.59, 1, 0)
  26. MovementLoopAddLocation(NPC, 987.23, -24.34, -773.78, 1, 0)
  27. MovementLoopAddLocation(NPC, 993.85, -24.49, -766.19, 1, math.random(5,10))
  28. MovementLoopAddLocation(NPC, 993.85, -24.49, -766.19, 1, 0)
  29. MovementLoopAddLocation(NPC, 985.53, -24.32, -774.67, 1, math.random(5,10))
  30. MovementLoopAddLocation(NPC, 985.53, -24.37, -774.67, 1, 0)
  31. MovementLoopAddLocation(NPC, 984.75, -24.37, -781.6, 1, math.random(5,10))
  32. end