TheDarkpawFanglord1.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/Antonica/TheDarkpawFanglord1.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.01 06:09:24
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -1641.96, -5.33, 713.14, 2, math.random(5,10))
  18. MovementLoopAddLocation(NPC, -1636.26, -0.85, 664.55, 2, 0)
  19. MovementLoopAddLocation(NPC, -1642.39, -0.99, 656.61, 2, 0)
  20. MovementLoopAddLocation(NPC, -1641.38, -1.05, 646.37, 2, 0)
  21. MovementLoopAddLocation(NPC, -1634.81, -0.69, 644.21, 2, 5)
  22. MovementLoopAddLocation(NPC, -1646.16, -1.23, 651.95, 2, 0)
  23. MovementLoopAddLocation(NPC, -1641.33, -0.89, 660.46, 2, 0)
  24. MovementLoopAddLocation(NPC, -1632.71, -0.62, 666.84, 2, 0)
  25. MovementLoopAddLocation(NPC, -1626.08, -0.03, 664.88, 2, 0)
  26. MovementLoopAddLocation(NPC, -1622.23, 0.27, 665.69, 2, 0)
  27. MovementLoopAddLocation(NPC, -1622.04, 0.28, 665.84, 2, math.random(5,10))
  28. MovementLoopAddLocation(NPC, -1602.05, -1.81, 697.47, 2, math.random(5,10))
  29. MovementLoopAddLocation(NPC, -1608.43, 1.56, 665.95, 2, math.random(5,10))
  30. MovementLoopAddLocation(NPC, -1601.17, 0.88, 677.22, 2, math.random(5,10))
  31. MovementLoopAddLocation(NPC, -1614.18, -3.65, 710.63, 2, math.random(5,10))
  32. MovementLoopAddLocation(NPC, -1627.84, -7.39, 731.78, 2, math.random(5,10))
  33. MovementLoopAddLocation(NPC, -1643.32, -7.34, 723.83, 2, math.random(5,10))
  34. MovementLoopAddLocation(NPC, -1627.86, -8.96, 738.42, 2, math.random(5,10))
  35. end