-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6935 from KnowOne134/Quest-Embers
[Quest][lua] Embers of His Past
- Loading branch information
Showing
6 changed files
with
319 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,310 @@ | ||
----------------------------------- | ||
-- Embers of His Past | ||
-- Logid: 6 Questid: 48 | ||
-- Fari-Wari : !pos 80 -6 -137 50 | ||
-- Sprightly Footsteps: !pos 822 -18 176 61 | ||
-- Withered Petals : !pos 857 -14 248 61 | ||
----------------------------------- | ||
local wajaomID = zones[xi.zone.WAJAOM_WOODLANDS] | ||
local whitegateID = zones[xi.zone.AHT_URHGAN_WHITEGATE] | ||
|
||
local quest = Quest:new(xi.questLog.AHT_URHGAN, xi.quest.id.ahtUrhgan.EMBERS_OF_HIS_PAST) | ||
|
||
quest.reward = | ||
{ | ||
item = xi.item.IMPERIAL_GOLD_PIECE, | ||
title = xi.title.FLAMESERPENT_FACILITATOR | ||
} | ||
|
||
quest.sections = | ||
{ | ||
|
||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_AVAILABLE and | ||
player:getQuestStatus(xi.questLog.AHT_URHGAN, xi.quest.id.ahtUrhgan.SOOTHING_WATERS) == xi.questStatus.QUEST_COMPLETED | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = quest:progressEvent(916, { text_table = 0 }), | ||
|
||
onEventFinish = | ||
{ | ||
[916] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 1) | ||
quest:begin(player) | ||
player:setPos(0, 0, 0, 0, xi.zone.WAJAOM_WOODLANDS) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 1 | ||
end, | ||
|
||
[xi.zone.WAJAOM_WOODLANDS] = | ||
{ | ||
onZoneIn = function(player, prevZone) | ||
return 16 | ||
end, | ||
|
||
onEventFinish = | ||
{ | ||
[16] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 2) | ||
player:setPos(0, 0, 0, 0, xi.zone.WAJAOM_WOODLANDS) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 2 | ||
end, | ||
|
||
[xi.zone.WAJAOM_WOODLANDS] = | ||
{ | ||
onZoneIn = function(player, prevZone) | ||
return 17 | ||
end, | ||
|
||
onEventFinish = | ||
{ | ||
[17] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 3) | ||
player:setPos(80, -6, -123, 55, xi.zone.AHT_URHGAN_WHITEGATE) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 3 | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = quest:event(917), | ||
}, | ||
|
||
[xi.zone.MOUNT_ZHAYOLM] = | ||
{ | ||
['Sprightly_Footsteps'] = | ||
{ | ||
onTrigger = function(player, npc) | ||
if VanadielHour() >= 18 or VanadielHour() <= 6 then | ||
return quest:progressCutscene(15) | ||
end | ||
end, | ||
}, | ||
|
||
onEventFinish = | ||
{ | ||
[15] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 4) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 4 | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = quest:event(917), | ||
}, | ||
|
||
[xi.zone.MOUNT_ZHAYOLM] = | ||
{ | ||
['Withered_Petals'] = | ||
{ | ||
onTrigger = function(player, npc) | ||
if VanadielHour() >= 18 or VanadielHour() <= 6 then | ||
return quest:progressCutscene(16) | ||
end | ||
end, | ||
}, | ||
|
||
onEventFinish = | ||
{ | ||
[16] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 5) | ||
player:setPos(141.740, -2, 0, 132, xi.zone.AHT_URHGAN_WHITEGATE) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 5 | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = | ||
{ | ||
onTrade = function(player, npc, trade) | ||
if npcUtil.tradeHasExactly(trade, xi.item.HYDRANGEA) then | ||
return quest:progressEvent(918, { text_table = 0 }) | ||
end | ||
end, | ||
|
||
onTrigger = function(player, npc) | ||
return quest:event(924) | ||
end, | ||
}, | ||
onEventFinish = | ||
{ | ||
[918] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 6) | ||
player:setPos(0, 0, 0, 0, xi.zone.WAJAOM_WOODLANDS) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 6 | ||
end, | ||
|
||
[xi.zone.WAJAOM_WOODLANDS] = | ||
{ | ||
onZoneIn = function(player, prevZone) | ||
return 18 | ||
end, | ||
|
||
onEventFinish = | ||
{ | ||
[18] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 7) | ||
player:setPos(0, 0, 0, 0, xi.zone.WAJAOM_WOODLANDS) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 7 | ||
end, | ||
|
||
[xi.zone.WAJAOM_WOODLANDS] = | ||
{ | ||
onZoneIn = function(player, prevZone) | ||
return 19 | ||
end, | ||
|
||
onEventFinish = | ||
{ | ||
[19] = function(player, csid, option, npc) | ||
player:messageSpecial(wajaomID.text.ITEM_RETURNED, xi.item.HYDRANGEA) | ||
quest:setVar(player, 'Prog', 8) | ||
player:timer(1000, function(playerArg) | ||
playerArg:setPos(80, -6, -123, 55, xi.zone.AHT_URHGAN_WHITEGATE) | ||
end) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 8 | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = quest:event(919), | ||
}, | ||
|
||
[xi.zone.MOUNT_ZHAYOLM] = | ||
{ | ||
['Withered_Petals'] = | ||
{ | ||
onTrade = function(player, npc, trade) | ||
if VanadielHour() >= 18 or VanadielHour() <= 6 then | ||
if npcUtil.tradeHasExactly(trade, xi.item.HYDRANGEA) then | ||
return quest:progressCutscene(17) | ||
end | ||
end | ||
end, | ||
}, | ||
|
||
onEventFinish = | ||
{ | ||
[17] = function(player, csid, option, npc) | ||
player:confirmTrade() | ||
player:startCutscene(18) | ||
end, | ||
|
||
[18] = function(player, csid, option, npc) | ||
quest:setVar(player, 'Prog', 9) | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_ACCEPTED and | ||
vars.Prog == 9 | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = quest:progressEvent(920, { text_table = 0 }), | ||
|
||
onEventFinish = | ||
{ | ||
[920] = function(player, csid, option, npc) | ||
if quest:complete(player) then | ||
player:addCurrency('imperial_standing', 500) | ||
player:messageSpecial(whitegateID.text.BESIEGED_OFFSET) | ||
player:needToZone(true) | ||
quest:setVar(player, 'Option', 1) | ||
end | ||
end, | ||
}, | ||
}, | ||
}, | ||
{ | ||
check = function(player, status, vars) | ||
return status == xi.questStatus.QUEST_COMPLETED and | ||
not player:needToZone() | ||
end, | ||
|
||
[xi.zone.AHT_URHGAN_WHITEGATE] = | ||
{ | ||
['Fari-Wari'] = | ||
{ | ||
onTrigger = function(player, npc) | ||
if quest:getVar(player, 'Option') == 1 then | ||
return quest:progressEvent(921, { text_table = 0 }) | ||
else | ||
return quest:event(923, { text_table = 0 }):replaceDefault() | ||
end | ||
end, | ||
}, | ||
|
||
onEventFinish = | ||
{ | ||
[921] = function(player, csid, option, npc) | ||
if npcUtil.giveItem(player, xi.item.MERCENARY_CAMP_ENTRY_SLIP) then | ||
quest:setVar(player, 'Option', 0) | ||
end | ||
end, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
return quest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
local ID = zones[xi.zone.MOUNT_ZHAYOLM] | ||
|
||
return { | ||
['_1p7'] = { event = 13 }, | ||
['blank11'] = { messageSpecial = ID.text.NOTHING_HAPPENS }, | ||
['_1p7'] = { event = 13 }, | ||
['blank11'] = { special = ID.text.NOTHING_HAPPENS }, | ||
['Sprightly_Footsteps'] = { special = ID.text.NOTHING_OUT_OF_ORDINARY }, | ||
['Withered_Petals'] = { special = ID.text.NOTHING_OUT_OF_ORDINARY }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters