MenderKrellian.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/TempleSt/MenderKrellian.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.11.04 05:11:11
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. SetInfoStructString(NPC, "action_state", "metalworking_idle")
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC,Spawn)
  13. if GetFactionAmount(Spawn,12) >0 then
  14. RandomGreeting(NPC, Spawn)
  15. else
  16. PlayFlavor(NPC, "", "We don't serve your pathetic kind here. Get out of my sight!", "heckno", 0, 0, Spawn, 0)
  17. end
  18. end
  19. function RandomGreeting(NPC, Spawn)
  20. local choice = MakeRandomInt(1,3)
  21. if choice == 1 then
  22. PlayFlavor(NPC, "voiceover/english/ratonga_eco_evil_1/ft/service/mender/ratonga_mender_service_evil_1_hail_gm_3b60608.mp3", "I can emphatically say repairing weapons is much more reliable than buying new ones. Would I lie? ", "agree", 3611464177, 4252627386, Spawn, 0)
  23. elseif choice == 2 then
  24. PlayFlavor(NPC, "voiceover/english/ratonga_eco_evil_1/ft/service/mender/ratonga_mender_service_evil_1_hail_gm_96a8c8ad.mp3", "Nah, no need to buy a completely new set. I'll use some of this special solvent I have. It'll fix it up good as new!", "no", 3265136163, 636302546, Spawn, 0)
  25. elseif choice == 3 then
  26. PlayFlavor(NPC, "voiceover/english/ratonga_eco_evil_1/ft/service/mender/ratonga_mender_service_evil_1_hail_gm_a2234480.mp3", "Once we're done, you'll have the strongest armor in all of the city! I guarantee it!", "wink", 3250181258, 4239977036, Spawn, 0)
  27. end
  28. end
  29. function respawn(NPC)
  30. spawn(NPC)
  31. end