acourtesan1.lua 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : SpawnScripts/Neriak/acourtesan1.lua
  3. Script Purpose : Waypoint Path for a courtesan Neriak Underground Entrance Right
  4. Script Author : Cynnar
  5. Script Date : 5/26/2018 12:00:00 AM
  6. Script Notes : <special-instructions>
  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, -108.44, 7.44, 303.36, 2, 0)
  18. MovementLoopAddLocation(NPC, -111.22, 7.53, 308.67, 2, 0)
  19. MovementLoopAddLocation(NPC, -113.68, 7.63, 313.21, 2, 0)
  20. MovementLoopAddLocation(NPC, -116.4, 7.53, 315.43, 2, 0)
  21. MovementLoopAddLocation(NPC, -121.05, 7.98, 313.64, 2, 0)
  22. MovementLoopAddLocation(NPC, -126.46, 8.14, 314.4, 2, 0)
  23. MovementLoopAddLocation(NPC, -132.14, 8.11, 318.48, 2, 0)
  24. MovementLoopAddLocation(NPC, -135.36, 7.81, 322.87, 2, 0)
  25. MovementLoopAddLocation(NPC, -141.83, 7.8, 325.35, 2, 0)
  26. MovementLoopAddLocation(NPC, -152.51, 7.85, 323.29, 2, 0)
  27. MovementLoopAddLocation(NPC, -159.26, 8.38, 320.96, 2, 0)
  28. MovementLoopAddLocation(NPC, -152.51, 7.85, 323.29, 2, 0)
  29. MovementLoopAddLocation(NPC, -141.83, 7.8, 325.35, 2, 0)
  30. MovementLoopAddLocation(NPC, -135.36, 7.81, 322.87, 2, 0)
  31. MovementLoopAddLocation(NPC, -132.14, 8.11, 318.48, 2, 0)
  32. MovementLoopAddLocation(NPC, -126.46, 8.14, 314.4, 2, 0)
  33. MovementLoopAddLocation(NPC, -121.05, 7.98, 313.64, 2, 0)
  34. MovementLoopAddLocation(NPC, -116.4, 7.53, 315.43, 2, 0)
  35. MovementLoopAddLocation(NPC, -113.68, 7.63, 313.21, 2, 0)
  36. MovementLoopAddLocation(NPC, -111.22, 7.53, 308.67, 2, 0)
  37. MovementLoopAddLocation(NPC, -108.44, 7.44, 303.36, 2, 0)
  38. end