123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- --[[
- Script Name : SpawnScripts/Graystone/toqeycitizenshiptrial.lua
- Script Author : Dorbin
- Script Date : 2022.09.01 06:09:03
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- SetRequiredQuest(NPC, 5764, 13)
- SetRequiredQuest(NPC, 5720, 2)
- SetRequiredQuest(NPC, 5720, 3)
- SetRequiredQuest(NPC, 5720, 4)
- SetRequiredQuest(NPC, 5720, 5)
- SetRequiredQuest(NPC, 5720, 6)
- SetRequiredQuest(NPC, 5720, 7)
- SetRequiredQuest(NPC, 5720, 8)
- end
- function casted_on(NPC, Spawn,SpellName)
- if SpellName == 'Use citizenship sign' then
- if HasQuest(Spawn,5764) and GetQuestStep(Spawn,5764)==13 and not HasCompletedQuest(Spawn,5720) and not HasItem(Spawn, 7906,1) then
- SendMessage(Spawn, "You pull an application for citizenship from the wall.")
- Quest = GetQuest(Spawn,5764)
- GiveQuestItem(Quest, Spawn, "I must complete this task to become a Citizen of Qeynos.", 7906)
-
- elseif not HasQuest(Spawn, 5720) and HasItem(Spawn, 7906,1) or GetQuestStep(Spawn,5720)==1 and HasItem(Spawn, 7906,1) then
- SendMessage(Spawn, "I must complete my citizenship task before performing the Citizenship Trial.")
- SendPopUpMessage(Spawn, "I must complete my citizenship task before performing the Citizenship Trial.", 200, 200, 200)
-
- elseif HasQuest(Spawn, 5720) and GetQuestStep(Spawn,5720)>=2 or HasQuest(Spawn, 5720) and GetQuestStep(Spawn,5720)<=8 then
- local con = CreateConversation()
- AddConversationOption(con, "Yes", "Leave")
- AddConversationOption(con, "No","CloseConversation")
- StartDialogConversation(con, 1, NPC, Spawn, "You have all the tokens required to enter the Trial Chamber. Do you wish to begin the trial?")
- end
- end
- end
- function Leave(NPC,Spawn)
- CloseConversation(NPC,Spawn)
- if GetQuestStep(Spawn,5720)==2 then
- SetStepComplete(Spawn,5720,2)
- end
- ZoneRef = GetZone("QeynosCitizenshipTrialChamber")
- Zone(ZoneRef,Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|