amaleficarachnid5.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/DownBelow_Classic/amaleficarachnid5.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.01.09 08:01:20
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. waypoints(NPC)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -104.13, -0.09, -171.67, 2, 4)
  18. MovementLoopAddLocation(NPC, -107.48, -0.13, -170.36, 2, 0)
  19. MovementLoopAddLocation(NPC, -108.88, -0.11, -168.91, 2, math.random(5,10))
  20. MovementLoopAddLocation(NPC, -108.88, -0.11, -168.91, 2, 0)
  21. MovementLoopAddLocation(NPC, -106.29, -0.1, -171.85, 2, 0)
  22. MovementLoopAddLocation(NPC, -105.16, -0.11, -174.67, 2, math.random(5,10))
  23. MovementLoopAddLocation(NPC, -105.16, -0.11, -174.67, 2, 0)
  24. MovementLoopAddLocation(NPC, -105.78, -0.09, -172.01, 2, 0)
  25. MovementLoopAddLocation(NPC, -108.24, -0.09, -171.15, 2, 0)
  26. MovementLoopAddLocation(NPC, -109.6, -0.12, -170.34, 2, math.random(5,10))
  27. MovementLoopAddLocation(NPC, -109.6, -0.12, -170.34, 2, 0)
  28. MovementLoopAddLocation(NPC, -108.02, -0.07, -168.74, 2, 0)
  29. MovementLoopAddLocation(NPC, -106.86, -0.07, -169.6, 2, math.random(5,10))
  30. MovementLoopAddLocation(NPC, -106.86, -0.07, -169.6, 2, 0)
  31. MovementLoopAddLocation(NPC, -106.46, -0.09, -172.07, 2, 0)
  32. MovementLoopAddLocation(NPC, -107.99, -0.06, -171.78, 2, math.random(5,10))
  33. MovementLoopAddLocation(NPC, -107.99, -0.06, -171.78, 2, 0)
  34. MovementLoopAddLocation(NPC, -104.94, -0.08, -174.66, 2, math.random(5,10))
  35. MovementLoopAddLocation(NPC, -104.94, -0.08, -174.66, 2, 0)
  36. MovementLoopAddLocation(NPC, -104.13, -0.09, -171.67, 2, 3)
  37. end