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

29 lines
No EOL
797 B
Lua
Executable file

--[[
Script Name : SpawnScripts/Truthbringer/KrokaTruthusher.lua
Script Author : Dorbin
Script Date : 2022.10.29 06:10:29
Script Purpose :
:
--]]
require "SpawnScripts/Generic/DialogModule"
function spawn(NPC)
end
function hailed(NPC, Spawn)
Dialog2(NPC, Spawn)
end
function respawn(NPC)
spawn(NPC)
end
function Dialog2(NPC, Spawn)
FaceTarget(NPC, Spawn)
Dialog.New(NPC, Spawn)
Dialog.AddDialog("I'm sorry, until you have chosen a specialty in your craft I do not have any work orders for you. Come see me when you're more practiced in your trade.")
Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_3_1003.mp3", 0, 0)
Dialog.AddOption("I'll work towards that end then.")
Dialog.Start()
end