1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- --[[
- Script Name : CorporalBatton.lua
- Script Purpose : Corporal Batton
- Script Author : Jabantiz
- Script Date : 08/29/2019
- Script Notes : Auto-Generated from a chat log using SpawnScriptDesigner
- --]]
- require "SpawnScripts/Generic/DialogModule"
- local PeckettsPatrol = 5715
- function spawn(NPC)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- Dialog.New(NPC, Spawn)
- if GetQuestStep(Spawn, PeckettsPatrol) == 6 then
- Dialog.AddOption("Coldwind Point Garrison reporting.", "Option1")
- end
- Dialog.AddDialog("I am afraid I must ask you to move along, citizen. This is a place of duty, not chatter.")
- Dialog.AddVoiceover("voiceover/english/corporal_batton/mudlib/vdl/quests/antonica/corporalbatton000.mp3", 3155813947, 2657899917)
- Dialog.AddOption("Excuse my interruption, guard.")
- Dialog.Start()
- end
- function Option1(NPC, Spawn)
- SetStepComplete(Spawn, PeckettsPatrol, 6)
- FaceTarget(NPC, Spawn)
- Dialog.New(NPC, Spawn)
- Dialog.AddVoiceover("voiceover/english/corporal_batton/antonica/corporalbatton001.mp3", 77618874, 84026675)
- Dialog.AddOption("For Qeynos!")
- Dialog.AddDialog("Nothing to report here militiaman. Before you proceed with your patrol the General has asked that you patrol Crater Pond also. You'll find Crater Pond just east of the South Gate of Qeynos.")
- Dialog.Start()
- end
|