GuardBanning.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/Butcherblock/GuardBanning.lua
  3. Script Author : jakejp
  4. Script Date : 2018.05.30 08:05:41
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. MovementLoopAddLocation(NPC, 607.97, 24.21, 589.22, 2)
  10. MovementLoopAddLocation(NPC, 623.78, 25.91, 591.10, 2)
  11. MovementLoopAddLocation(NPC, 626.74, 25.91, 563.09, 2)
  12. MovementLoopAddLocation(NPC, 650.17, 25.91, 567.49, 2)
  13. MovementLoopAddLocation(NPC, 657.09, 25.91, 579.54, 2)
  14. MovementLoopAddLocation(NPC, 734.28, 25.91, 579.42, 2)
  15. MovementLoopAddLocation(NPC, 741.71, 24.00, 546.19, 2)
  16. MovementLoopAddLocation(NPC, 734.28, 25.91, 579.42, 2)
  17. MovementLoopAddLocation(NPC, 657.09, 25.91, 579.54, 2)
  18. MovementLoopAddLocation(NPC, 650.17, 25.91, 567.49, 2)
  19. MovementLoopAddLocation(NPC, 626.74, 25.91, 563.09, 2)
  20. MovementLoopAddLocation(NPC, 623.78, 25.91, 591.10, 2)
  21. MovementLoopAddLocation(NPC, 605.66, 24.21, 590.12, 2)
  22. end
  23. function hailed(NPC, Spawn)
  24. FaceTarget(NPC, Spawn)
  25. end
  26. function respawn(NPC)
  27. spawn(NPC)
  28. end