MarinaeLaesear.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/MarinaeLaesear.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.20 05:05:30
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. PlayFlavor(NPC, "", "Marinae Laesear at your service, treasure hunter extraordinaire, and loyal citizen of Qeynos.", "", 1689589577, 4560189)
  10. MovementLoopAddLocation(NPC, -459.27, -44.26, -306.22, 5)
  11. MovementLoopAddLocation(NPC, -396.60, -43.09, -336.58, 5)
  12. MovementLoopAddLocation(NPC, -460.18, -47.48, -404.87, 5)
  13. MovementLoopAddLocation(NPC, -569.16, -48.29, -437.38, 5)
  14. MovementLoopAddLocation(NPC, -580.86, -49.58, -518.17, 5)
  15. MovementLoopAddLocation(NPC, -574.57, -48.55, -579.82, 5)
  16. MovementLoopAddLocation(NPC, -589.06, -49.44, -624.68, 5)
  17. MovementLoopAddLocation(NPC, -627.78, -49.53, -672.79, 5)
  18. MovementLoopAddLocation(NPC, -363.86, -50.90, -884.33, 5)
  19. MovementLoopAddLocation(NPC, -462.50, -92.23, -927.03, 5)
  20. MovementLoopAddLocation(NPC, -454.70, -91.13, -967.01, 5)
  21. MovementLoopAddLocation(NPC, -471.79, -91.81, -974.52, 5, "jump")
  22. end
  23. function jump(NPC, Spawn)
  24. Despawn(NPC)
  25. end
  26. function respawn(NPC)
  27. spawn(NPC)
  28. end