mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
36 lines
No EOL
1.5 KiB
Lua
Executable file
36 lines
No EOL
1.5 KiB
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/TempleSt/MenderKrellian.lua
|
|
Script Author : Dorbin
|
|
Script Date : 2023.11.04 05:11:11
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
SetInfoStructString(NPC, "action_state", "metalworking_idle")
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC,Spawn)
|
|
if GetFactionAmount(Spawn,12) >0 then
|
|
RandomGreeting(NPC, Spawn)
|
|
else
|
|
PlayFlavor(NPC, "", "We don't serve your pathetic kind here. Get out of my sight!", "heckno", 0, 0, Spawn, 0)
|
|
end
|
|
end
|
|
|
|
function RandomGreeting(NPC, Spawn)
|
|
local choice = MakeRandomInt(1,3)
|
|
|
|
if choice == 1 then
|
|
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)
|
|
elseif choice == 2 then
|
|
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)
|
|
elseif choice == 3 then
|
|
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)
|
|
end
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |