astoneshellsnapper5.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/Classic_forest/astoneshellsnapper5.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.10.12 04:10:14
  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, 978.2, -26.75, -625.41, 1, 0)
  21. MovementLoopAddLocation(NPC, 983.38, -25.64, -623.13, 1, math.random(5,10))
  22. MovementLoopAddLocation(NPC, 983.38, -25.64, -623.13, 1, 0)
  23. MovementLoopAddLocation(NPC, 985.28, -25.46, -620.51, 1, 0)
  24. MovementLoopAddLocation(NPC, 985.48, -25.43, -616.28, 1, 0)
  25. MovementLoopAddLocation(NPC, 986.65, -25.77, -610.79, 1, math.random(5,10))
  26. MovementLoopAddLocation(NPC, 986.65, -25.77, -610.79, 1, 0)
  27. MovementLoopAddLocation(NPC, 987.61, -24.44, -613.73, 1, 0)
  28. MovementLoopAddLocation(NPC, 986.85, -24.41, -615.73, 1, math.random(5,10))
  29. MovementLoopAddLocation(NPC, 986.85, -24.41, -615.73, 1, 0)
  30. MovementLoopAddLocation(NPC, 984.23, -26.13, -620.43, 1, math.random(5,10))
  31. MovementLoopAddLocation(NPC, 984.23, -26.13, -620.43, 1, 0)
  32. MovementLoopAddLocation(NPC, 982.4, -24.32, -625.96, 1, math.random(5,10))
  33. MovementLoopAddLocation(NPC, 982.4, -24.32, -625.96, 1, 0)
  34. MovementLoopAddLocation(NPC, 973.66, -24.45, -631.17, 1, math.random(5,10))
  35. MovementLoopAddLocation(NPC, 973.66, -24.45, -631.17, 1, 0)
  36. MovementLoopAddLocation(NPC, 969.74, -27.44, -630.71, 1, math.random(5,10))
  37. MovementLoopAddLocation(NPC, 969.74, -27.44, -630.71, 1, 0)
  38. MovementLoopAddLocation(NPC, 978.2, -26.75, -625.41, 1, math.random(5,10))
  39. end