eq2emu-content/SpawnScripts/Longshadow/VDyhn.lua
2024-10-26 11:37:28 +00:00

53 lines
No EOL
2.4 KiB
Lua
Executable file

--[[
Script Name : SpawnScripts/LongshadowAlley/VDyhn.lua
Script Purpose : V`Dyhn
Script Author : torsten
Script Date : 2022.07.20
Script Notes : Auto-Generated Conversation from PacketParser Data
--]]
require "SpawnScripts/Generic/DialogModule"
function spawn(NPC)
SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange")
SetInfoStructString(NPC, "action_state", "woodworking_idle")
end
function respawn(NPC)
spawn(NPC)
end
function InRange(NPC, Spawn)
if MakeRandomInt(1, 100) <= 18 and GetFactionAmount(Spawn,12) >0 then
FaceTarget(NPC, Spawn)
PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/weaponsmith/human_weaponsmith_service_evil_1_aoi_gf_e5231875.mp3", "Don't be caught defenseless when your enemies strike. See our stock of weapons, before it's too late!", "beckon", 309302899, 2401241224, Spawn)
elseif GetFactionAmount(Spawn,12) <=0 then
FaceTarget(NPC, Spawn)
PlayFlavor(NPC, "", "", "shakefist", 4267987983, 4115199119, Spawn, 0)
end
end
function respawn(NPC)
spawn(NPC)
end
function hailed(NPC, Spawn)
if GetFactionAmount(Spawn,12) >0 then
Dialog1(NPC, Spawn)
else
FaceTarget(NPC, Spawn)
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_1/ft/highelf/highelf_eco_good_1_notcitizen_gf_6da83eeb.mp3", "I'll defend myself if it comes to that, savage.", "", 3357669916, 1930978996, Spawn)
end
end
function Dialog1(NPC, Spawn)
FaceTarget(NPC,Spawn)
local choice = MakeRandomInt(1,3)
if choice == 1 then
PlayFlavor(NPC, "voiceover/english/optional2/darkelf_eco_evil_1/ft/service/merchant/darkelf_merchant_service_evil_1_hail_gm_f715099e.mp3", "Hello there, kind adventurer. My merchandise carries the seal of the Overlord himself! Go ahead, take a look!", "", 1302153135, 3653961458, Spawn, 0)
elseif choice == 2 then
PlayFlavor(NPC, "voiceover/english/optional2/darkelf_eco_evil_1/ft/service/merchant/darkelf_merchant_service_evil_1_hail_gm_6ec08438.mp3", "In spite of the cost of living, it's still quite a popular item.", "", 2781916825, 678640011, Spawn, 0)
elseif choice == 3 then
PlayFlavor(NPC, "voiceover/english/optional2/darkelf_eco_evil_1/ft/service/merchant/darkelf_merchant_service_evil_1_hail_gm_aff3fc07.mp3", "Are you going to buy anything today or am I just wasting my time? This isn't a museum display you know!", "", 898812878, 1402234103, Spawn, 0)
end
end