amaleficarachnid11.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/DownBelow_Classic/amaleficarachnid11.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.01.09 09:01:15
  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, -85.6, -0.07, -185.56, 2, 4)
  21. MovementLoopAddLocation(NPC, -84, -0.1, -184.76, 2, 0)
  22. MovementLoopAddLocation(NPC, -85.36, -0.09, -182.52, 2, math.random(5,10))
  23. MovementLoopAddLocation(NPC, -85.36, -0.09, -182.52, 2, 0)
  24. MovementLoopAddLocation(NPC, -83.61, -0.08, -183.26, 2, 0)
  25. MovementLoopAddLocation(NPC, -82.76, -0.05, -182.54, 2, math.random(5,10))
  26. MovementLoopAddLocation(NPC, -82.76, -0.05, -182.54, 2, 0)
  27. MovementLoopAddLocation(NPC, -83.65, -0.09, -185.13, 2, 0)
  28. MovementLoopAddLocation(NPC, -83.16, -0.08, -188.05, 2, math.random(5,10))
  29. MovementLoopAddLocation(NPC, -83.16, -0.08, -188.05, 2, 0)
  30. MovementLoopAddLocation(NPC, -84.24, -0.09, -186.2, 2, 0)
  31. MovementLoopAddLocation(NPC, -83.19, -0.07, -183.88, 2, math.random(5,10))
  32. MovementLoopAddLocation(NPC, -83.19, -0.07, -183.88, 2, 0)
  33. MovementLoopAddLocation(NPC, -85.01, -0.08, -181.07, 2, math.random(5,10))
  34. MovementLoopAddLocation(NPC, -85.01, -0.08, -181.07, 2, 0)
  35. MovementLoopAddLocation(NPC, -82.72, -0.05, -182.09, 2, 0)
  36. MovementLoopAddLocation(NPC, -83.05, -0.05, -183.38, 2, math.random(5,10))
  37. MovementLoopAddLocation(NPC, -83.05, -0.05, -183.38, 2, 0)
  38. MovementLoopAddLocation(NPC, -85.6, -0.07, -185.56, 2, 3)
  39. end