mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
25 lines
No EOL
736 B
Lua
Executable file
25 lines
No EOL
736 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Commonwealth/AngtrisDenyn.lua
|
|
Script Author : Dorbin
|
|
Script Date : 2022.10.25 01:10:13
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/DialogModule"
|
|
|
|
function spawn(NPC)
|
|
|
|
end
|
|
|
|
function hailed(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_2_1060.mp3", 0, 0)
|
|
Dialog.AddOption("I'll work towards that end then.")
|
|
Dialog.Start()
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |