SapswillvillagerRunner.lua 791 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : aSapswillvillagerRunner.lua
  3. Script Purpose : Makes the sapswill on the Queen's Colony run around the rock.
  4. Script Author : Scatman
  5. Script Date : 2008.12.15
  6. Script Notes :
  7. --]]
  8. local ADiplomaticMission = 166
  9. function spawn(NPC)
  10. SpawnSet(NPC, "visual_state", 0)
  11. MovementLoopAddLocation(NPC, -75.98, 0.26, -238.35, 4, 0)
  12. MovementLoopAddLocation(NPC, -72.04, 0.25, -240.76, 4, 0)
  13. MovementLoopAddLocation(NPC, -73.36, 0.26, -245.79, 4, 0)
  14. MovementLoopAddLocation(NPC, -78.16, 0.35, -248.07, 4, 0)
  15. MovementLoopAddLocation(NPC, -82.81, 1.69, -245.62, 4, 0)
  16. MovementLoopAddLocation(NPC, -85.91, 2.09, -240.37, 4, 0)
  17. MovementLoopAddLocation(NPC, -82.86, 1.75, -237.19, 4, 0)
  18. end
  19. function hailed(NPC, Spawn)
  20. --FaceTarget(NPC, Spawn)
  21. end
  22. function respawn(NPC)
  23. end