SteveEchar.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/SouthQeynos/SteveEchar.lua
  3. Script Purpose : Steve Echar <Mender>
  4. Script Author : Cynnar
  5. Script Date : 2020.04.12
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function InRange(NPC, Spawn)
  15. end
  16. function LeaveRange(NPC, Spawn)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. local choice = math.random(1,6)
  21. if choice == 1 then
  22. PlayFlavor(NPC, "voiceover/english/optional2/human_eco_good_1/ft/service/mender/human_mender_service_good_1_hail_gm_4bd3613e.mp3", "Hello, adventurer. Looking to get some items repaired after a hard day of dragon slaying?", "wink", 380627654, 2633313989, Spawn)
  23. elseif choice == 2 then
  24. PlayFlavor(NPC, "voiceover/english/optional2/human_eco_good_1/ft/service/mender/human_mender_service_good_1_hail_gm_53bda798.mp3", "Hello there, my fine adventurer. Just give me that armor right quick and I'll hammer it up good as new!", "smile", 3765628057, 1447476358, Spawn)
  25. elseif choice == 3 then
  26. PlayFlavor(NPC, "", "Hello there, friend. Let me fix up that armor for you.", "", 1689589577, 4560189, Spawn)
  27. elseif choice == 4 then
  28. PlayFlavor(NPC, "", "Hello friend, are you in need of repair? My prices are very moderate.", "", 1689589577, 4560189, Spawn)
  29. elseif choice == 5 then
  30. PlayFlavor(NPC, "", "Greetings, traveller! If I can be of assistance please let me know.", "", 1689589577, 4560189, Spawn)
  31. elseif choice == 6 then
  32. PlayFlavor(NPC, "", "Good day, traveller! I trust you haven't been getting into any trouble.", "", 1689589577, 4560189, Spawn)
  33. else
  34. end
  35. end