wyrmdon.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : wyrmdon.lua
  3. Script Purpose : Waypoint Path for wyrmdon.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 02:14:17 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. local choice = math.random(1,4)
  14. if choice == 1 then
  15. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/guard/human_guard_service_good_1_hail_gm_c865a827.mp3", "Duty above all else, citizen, except honor!", "scold", 4141262779, 4227030045, Spawn)
  16. elseif choice == 2 then
  17. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/guard/human_guard_service_good_1_hail_gm_ebfceda5.mp3", "Greetings, citizen. I am on guard duty. Should you get into trouble, seek me out.", "attention", 1945337199, 2685949436, Spawn)
  18. elseif choice == 3 then
  19. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/guard/human_guard_service_good_1_hail_gm_ee473c11.mp3", "Good day to you, citizen. All preserve Queen Antonia.", "salute", 2997871263, 2912813719, Spawn)
  20. elseif choice == 4 then
  21. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/guard/human_guard_service_good_1_hail_gm_76da37c9.mp3", "I hate working this shift! If the gnolls don't attack now, I may die of boredom.", "grumble", 4099618783, 4191002419, Spawn)
  22. else
  23. end
  24. end
  25. function respawn(NPC)
  26. spawn(NPC)
  27. end
  28. function waypoints(NPC)
  29. MovementLoopAddLocation(NPC, 936.72, -25.56, 72.05, 2, 30)
  30. MovementLoopAddLocation(NPC, 925.65, -25.56, 66.65, 2, 0)
  31. MovementLoopAddLocation(NPC, 910.81, -25.36, 84.67, 2, 0)
  32. MovementLoopAddLocation(NPC, 925, -25.49, 46.95, 2, 0)
  33. MovementLoopAddLocation(NPC, 931.56, -25.59, 29.07, 2, 0)
  34. MovementLoopAddLocation(NPC, 921.12, -25.48, 21.05, 2, 0)
  35. MovementLoopAddLocation(NPC, 901.38, -25.47, 41.4, 2, 0)
  36. MovementLoopAddLocation(NPC, 937.28, -25.56, 67.34, 2, 60)
  37. MovementLoopAddLocation(NPC, 901.38, -25.47, 41.4, 2, 0)
  38. MovementLoopAddLocation(NPC, 921.12, -25.48, 21.05, 2, 0)
  39. MovementLoopAddLocation(NPC, 931.56, -25.59, 29.07, 2, 0)
  40. MovementLoopAddLocation(NPC, 925, -25.49, 46.95, 2, 0)
  41. MovementLoopAddLocation(NPC, 910.81, -25.36, 84.67, 2, 0)
  42. MovementLoopAddLocation(NPC, 925.65, -25.56, 66.65, 2, 0)
  43. MovementLoopAddLocation(NPC, 936.72, -25.56, 72.05, 2, 60)
  44. end