adefiledpriest133769631.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/adefiledpriest133769631.lua
  3. Script Purpose : Waypoint Path for adefiledpriest133769631.lua
  4. Script Author : Rylec, PlayFlavor by premierio015
  5. Script Date : 06-26-2020 06:15:07
  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, 179.85, -0.62, -171.48, 2, math.random(12, 22))
  19. MovementLoopAddLocation(NPC, 193.76, -0.68, -165, 2, math.random(12, 22))
  20. MovementLoopAddLocation(NPC, 200.8, -0.71, -146.53, 2, math.random(12, 22))
  21. MovementLoopAddLocation(NPC, 197.94, -0.7, -143.02, 2, math.random(12, 22))
  22. MovementLoopAddLocation(NPC, 200.77, -0.7, -159.77, 2, math.random(12, 22))
  23. MovementLoopAddLocation(NPC, 187.76, -0.66, -154.5, 2, math.random(12, 22))
  24. MovementLoopAddLocation(NPC, 188.04, -0.66, -160.75, 2, 0)
  25. MovementLoopAddLocation(NPC, 192.36, -0.67, -166.18, 2, math.random(12, 22))
  26. MovementLoopAddLocation(NPC, 198.92, -0.7, -134.73, 2, math.random(12, 22))
  27. MovementLoopAddLocation(NPC, 194.06, -0.68, -149.34, 2, 0)
  28. end
  29. function aggro(NPC, Spawn)
  30. math.randomseed(os.time())
  31. local choice = math.random (1,3)
  32. if choice == 1 then
  33. PlayFlavor(NPC, "voiceover/english/skeleton_base_1/ft/skeleton/skeleton_base_1_1_aggro_c77d7bff.mp3", "Your eyes are so pretty.", "", 1412152942, 873988632, Spawn)
  34. elseif choice == 2 then
  35. PlayFlavor(NPC, "voiceover/english/skeleton_base_1/ft/skeleton/skeleton_base_1_1_aggro_2168c5.mp3", "Seek death and it finds you.", "", 2988489621, 1045543573, Spawn)
  36. else
  37. PlayFlavor(NPC, "voiceover/english/skeleton_base_1/ft/skeleton/skeleton_base_1_1_aggro_8bc7a2cc.mp3", "Your blood calls to me.", "", 1242322025, 1154999668, Spawn)
  38. end
  39. end
  40. function death(NPC, Spawn)
  41. math.randomseed(os.time())
  42. local choice = math.random(1,2)
  43. if choice == 1 then
  44. PlayFlavor(NPC, "voiceover/english/skeleton_base_1/ft/skeleton/skeleton_base_1_1_death_ff39f327.mp3", "Final death comes at last.", "", 3768284332, 62777040, Spawn)
  45. else
  46. PlayFlavor(NPC, "voiceover/english/skeleton_base_1/ft/skeleton/skeleton_base_1_1_death_fbcb503b.mp3", "Rest in peace.", "", 3591309093, 1423656405, Spawn)
  47. end
  48. end