1234567891011121314151617181920212223242526272829303132333435363738 |
- --[[
- Script Name : SpawnScripts/antonica/Geddard.lua
- Script Author : Premierio015
- Script Date : 2021.06.26 07:06:47
- Script Purpose :
- :
- --]]
- local DeliveriesForFlores = 5333 -- Deliveries For Flores Quest
- function spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- PlayFlavor(NPC, "voiceover/english/merchant_geddard/antonica/merchantgeddard000.mp3", "", "", 1542141863, 1883255955, Spawn)
- conversation = CreateConversation()
- if GetQuestStep(Spawn, DeliveriesForFlores) == 2 then
- AddConversationOption(conversation, "I'm here to deliver a crate of supplies from Flores.", "Option1")
- end
- AddConversationOption(conversation, "Nothing right now thanks.")
- StartConversation(conversation, NPC, Spawn, "Welcome to Gnollslayer Keep! I'm Geddard, the only merchant for leagues. If I don't got it, you don't need it! What'll it be for you today?")
- end
- function Option1(NPC, Spawn)
- SetStepComplete(Spawn, DeliveriesForFlores, 2)
- FaceTarget(NPC, Spawn)
- local conversation = CreateConversation()
- PlayFlavor(NPC, "voiceover/english/merchant_geddard/antonica/merchantgeddard001.mp3", "", "", 3026041322, 2122466947, Spawn)
- AddConversationOption(conversation, "I will, take care! Good luck with your sales.")
- StartConversation(conversation, NPC, Spawn, "Why didn't you say so? Let me see what you've brought...excellent! I'll take that crate you're carrying. And here's the pouch for Flores. ")
- end
- function respawn(NPC)
- spawn(NPC)
- end
|