mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
54 lines
2.2 KiB
Lua
Executable file
54 lines
2.2 KiB
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/ScaleYard/CalebBrazenroot.lua
|
|
Script Purpose : Caleb Brazenroot
|
|
Script Author : John Adams
|
|
Script Date : 2008.10.01
|
|
Script Notes : Auto-Generated Conversation from PacketParser Data
|
|
--]]
|
|
|
|
-- Quest ID's
|
|
QUEST_2 = 347 -- 183 --Sound Off!
|
|
|
|
function spawn(NPC)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
conversation = CreateConversation()
|
|
|
|
if HasQuest(Spawn, QUEST_2) and GetQuestStep(Spawn, QUEST_2) == 2 then
|
|
PlayFlavor(NPC, "voiceover/english/tutorial_revamp/caleb_brazenroot/fprt_hood06/caleb001.mp3", "", "", 1644020306, 887498353, Spawn)
|
|
AddConversationOption(conversation, "AHHHHHHHHHHHHHHHH!", "dlg_0_1")
|
|
StartConversation(conversation, NPC, Spawn, "Aye? What can I do you for?")
|
|
else
|
|
PlayFlavor(NPC, "voiceover/english/tutorial_revamp/caleb_brazenroot/fprt_hood06/quest_caleb_idle_text_55217158.mp3", "An axe might do it, or a sword. A hammer would work too... Or even a flail! Bah, we barbarians have to make such difficult decisions!", "", 3199749556, 268743291, Spawn)
|
|
end
|
|
end
|
|
|
|
function dlg_0_1(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
conversation = CreateConversation()
|
|
|
|
PlayFlavor(NPC, "voiceover/english/tutorial_revamp/caleb_brazenroot/fprt_hood06/caleb002.mp3", "", "", 1052071538, 473490683, Spawn)
|
|
AddConversationOption(conversation, "AHHHHHHHHHHHHHHHH!", "dlg_0_2")
|
|
StartConversation(conversation, NPC, Spawn, "AHHHHHHHHHHHHHHHH!")
|
|
end
|
|
|
|
function dlg_0_2(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
conversation = CreateConversation()
|
|
|
|
SetStepComplete(Spawn, QUEST_2, 2)
|
|
PlayFlavor(NPC, "voiceover/english/tutorial_revamp/caleb_brazenroot/fprt_hood06/caleb002.mp3", "", "", 1052071538, 473490683, Spawn)
|
|
AddConversationOption(conversation, "...")
|
|
StartConversation(conversation, NPC, Spawn, "AHHHHHHHHHHHHH!")
|
|
end
|
|
|
|
--[[ raw_conversations
|
|
PlayFlavor(NPC, "voiceover/english/tutorial_revamp/caleb_brazenroot/fprt_hood06/quest_caleb_idle_text_55217158.mp3", "An axe might do it, or a sword. A hammer would work too... Or even a flail! Bah, we barbarians have to make such difficult decisions!", "", 3199749556, 268743291, Spawn)
|
|
--]]
|
|
|