erwin.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : erwin.lua
  3. Script Purpose : Waypoint Path for erwin.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 02:39:02 PM
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 698.34, -19.9, 131.15, 2, 0)
  19. MovementLoopAddLocation(NPC, 677.48, -21.02, 142.28, 2, 0)
  20. MovementLoopAddLocation(NPC, 680.55, -20.76, 155.63, 2, 0)
  21. MovementLoopAddLocation(NPC, 704.73, -19.48, 175.59, 2, 0)
  22. MovementLoopAddLocation(NPC, 703.89, -19.54, 189.78, 2, 0)
  23. MovementLoopAddLocation(NPC, 692.1, -19.52, 195.98, 2, 0)
  24. MovementLoopAddLocation(NPC, 679.77, -19.76, 221.54, 2, 0)
  25. MovementLoopAddLocation(NPC, 671.72, -19.66, 223.75, 2, 0)
  26. MovementLoopAddLocation(NPC, 686.27, -20.49, 267.75, 2, 30)
  27. MovementLoopAddLocation(NPC, 671.72, -19.66, 223.75, 2, 0)
  28. MovementLoopAddLocation(NPC, 679.77, -19.76, 221.54, 2, 0)
  29. MovementLoopAddLocation(NPC, 692.1, -19.52, 195.98, 2, 0)
  30. MovementLoopAddLocation(NPC, 703.89, -19.54, 189.78, 2, 0)
  31. MovementLoopAddLocation(NPC, 704.73, -19.48, 175.59, 2, 0)
  32. MovementLoopAddLocation(NPC, 680.55, -20.76, 155.63, 2, 0)
  33. MovementLoopAddLocation(NPC, 677.48, -21.02, 142.28, 2, 0)
  34. MovementLoopAddLocation(NPC, 698.34, -19.9, 131.15, 2, 30)
  35. end