amaleficarachnid6.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/DownBelow_Classic/amaleficarachnid6.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.01.09 08:01:18
  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 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, -108.65, -0.11, -170.64, 2, 4)
  21. MovementLoopAddLocation(NPC, -110.24, -0.14, -168.55, 2, 0)
  22. MovementLoopAddLocation(NPC, -113.95, 0.36, -168.17, 2, math.random(5,10))
  23. MovementLoopAddLocation(NPC, -113.95, 0.36, -168.17, 2, 0)
  24. MovementLoopAddLocation(NPC, -109.66, -0.07, -167.46, 2, 0)
  25. MovementLoopAddLocation(NPC, -107.74, -0.09, -169.4, 2, math.random(5,10))
  26. MovementLoopAddLocation(NPC, -107.74, -0.09, -169.4, 2, 0)
  27. MovementLoopAddLocation(NPC, -108.46, -0.03, -167.26, 2, 0)
  28. MovementLoopAddLocation(NPC, -109.92, -0.09, -167.81, 2, math.random(5,10))
  29. MovementLoopAddLocation(NPC, -109.92, -0.09, -167.81, 2, 0)
  30. MovementLoopAddLocation(NPC, -106.5, -0.1, -170.54, 2, 0)
  31. MovementLoopAddLocation(NPC, -105.2, -0.1, -173.24, 2, math.random(5,10))
  32. MovementLoopAddLocation(NPC, -105.2, -0.1, -173.24, 2, 0)
  33. MovementLoopAddLocation(NPC, -108.32, -0.05, -172.02, 2, math.random(5,10))
  34. MovementLoopAddLocation(NPC, -108.32, -0.05, -172.02, 2, 0)
  35. MovementLoopAddLocation(NPC, -108.39, -0.09, -168.79, 2, 0)
  36. MovementLoopAddLocation(NPC, -109.51, -0.13, -168.85, 2, math.random(5,10))
  37. MovementLoopAddLocation(NPC, -109.51, -0.13, -168.85, 2, 0)
  38. MovementLoopAddLocation(NPC, -112.77, 0.36, -167.34, 2, 0)
  39. MovementLoopAddLocation(NPC, -115.35, -0.04, -168.85, 2, math.random(5,10))
  40. MovementLoopAddLocation(NPC, -115.35, -0.04, -168.85, 2, 0)
  41. MovementLoopAddLocation(NPC, -110.87, -0.13, -168.32, 2, 0)
  42. MovementLoopAddLocation(NPC, -106.4, -0.07, -169.91, 2, math.random(5,10))
  43. MovementLoopAddLocation(NPC, -106.4, -0.07, -169.91, 2, 0)
  44. MovementLoopAddLocation(NPC, -108.65, -0.11, -170.64, 2, 3)
  45. end