mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
29 lines
No EOL
797 B
Lua
Executable file
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 |