Crushinator.lua 637 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/Crushinator.lua
  3. Script Purpose : Crushinator movement loop
  4. Script Author : theFoof
  5. Script Date : 2013.5.20
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. MovementLoopAddLocation(NPC, -273.33, 23.12, -407.99, 8, 0)
  10. MovementLoopAddLocation(NPC, -241.49, 23.16, -423.66, 8, 0)
  11. MovementLoopAddLocation(NPC, -215.44, 24.77, -411.60, 8, 0)
  12. MovementLoopAddLocation(NPC, -180.82, 21.81, -353.42, 8, 0)
  13. MovementLoopAddLocation(NPC, -215.44, 24.77, -411.60, 8, 0)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end