patricia.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : patricia.lua
  3. Script Purpose : Waypoint Path for patricia.lua
  4. Script Author : Devn00b
  5. Script Date : 04/12/2020 11:44:25 AM
  6. Script Notes : Locations collected from Live
  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, 424.07, -20.43, -326.34, 2, 30)
  18. MovementLoopAddLocation(NPC, 426.93, -20.52, -310.88, 2, 30)
  19. MovementLoopAddLocation(NPC, 477.09, -19.67, -292.41, 2, 30)
  20. MovementLoopAddLocation(NPC, 464.39, -20.19, -309.44, 2, 30)
  21. MovementLoopAddLocation(NPC, 485.71, -20.43, -310.97, 2, 30)
  22. MovementLoopAddLocation(NPC, 473.28, -20.55, -319.93, 2, 30)
  23. MovementLoopAddLocation(NPC, 466.2, -19.66, -346.58, 2, 30)
  24. MovementLoopAddLocation(NPC, 448.72, -20.33, -319.51, 2, 30)
  25. MovementLoopAddLocation(NPC, 425.26, -20.44, -329.69, 2, 30)
  26. MovementLoopAddLocation(NPC, 448.72, -20.33, -319.51, 2, 30)
  27. MovementLoopAddLocation(NPC, 466.2, -19.66, -346.58, 2, 30)
  28. MovementLoopAddLocation(NPC, 473.28, -20.55, -319.93, 2, 30)
  29. MovementLoopAddLocation(NPC, 485.71, -20.43, -310.97, 2, 30)
  30. MovementLoopAddLocation(NPC, 464.39, -20.19, -309.44, 2, 30)
  31. MovementLoopAddLocation(NPC, 477.09, -19.67, -292.41, 2, 30)
  32. MovementLoopAddLocation(NPC, 426.93, -20.52, -310.88, 2, 30)
  33. MovementLoopAddLocation(NPC, 424.07, -20.43, -326.34, 2, 30)
  34. end