From 8ad643a4893a842ed500130a379a29819fe164c8 Mon Sep 17 00:00:00 2001 From: xban1x <urban.lavbic@gmail.com> Date: Thu, 29 Aug 2013 19:49:12 +0000 Subject: [PATCH] BETA: Minor quest fixes. * Q00611_AllianceWithVarkaSilenos, wrong bypass. * Reported by: FBIAgent * Patch by: Konstantinos * Q00153_DeliverGoods, minor fixes to htmls and constructor. * Reported by: Cathe * Patch by: Konstantinos * Reviewed by: xban1x, jurchiks, UnAfraid, FBIAgent, Zoey76 --- .../game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html | 2 +- .../game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html | 2 +- .../quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java | 3 ++- .../quests/Q00611_AllianceWithVarkaSilenos/31378-19.html | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html index d14a5e755b..8a4c839028 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html +++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html @@ -1,4 +1,4 @@ <html><body>Sentry Arnold:<br> Here is the list of all the townspeople you must deliver items to. It's that simple! I'll figure your wages based on how well you do.<br> -That Heavy Wooden Box goes to <font color="LEVEL">Merchant Jackson</font> at the Weapons Shop, the Fabric goes to <font color="LEVEL">Merchant Silvia</font> at the General Store, and that Clay Pot goes to <font color="LEVEL">Warehouse Keeper Lant</font>. Deliver those items and bring back the <font color="LEVEL">receipts</font>. Thank you! +That Heavy Wooden Box goes to <font color="LEVEL">Merchant Jackson</font> at the Weapons Shop, the Fabric goes to <font color="LEVEL">Merchant Silvia</font> at the General Store, and that Clay Pot goes to <font color="LEVEL">Warehouse Keeper Rant</font>. Deliver those items and bring back the <font color="LEVEL">receipts</font>. Thank you! </body></html> \ No newline at end of file diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html index cef7118a34..ae06724703 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html +++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html @@ -1,4 +1,4 @@ <html><body>Sentry Arnold:<br> You still haven't made the deliveries? Please do so immediately and bring me back the receipts!<br> -The Heavy Wooden Box goes to Merchant Jackson at the Weapons Shop, the Fabrics go to Merchant Silvia at the General Store, and the Clay Pot goes to Warehouse Keeper Lant. +The Heavy Wooden Box goes to Merchant Jackson at the Weapons Shop, the Fabrics go to Merchant Silvia at the General Store, and the Clay Pot goes to Warehouse Keeper Rant. </body></html> \ No newline at end of file diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java index 34bfe22d23..ab5ecff600 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java @@ -52,7 +52,8 @@ public class Q00153_DeliverGoods extends Quest public Q00153_DeliverGoods(int questId, String name, String descr) { super(questId, name, descr); - addStartNpc(ARNOLD_ID, JACKSON_ID, SILVIA_ID, ARNOLD_ID, RANT_ID); + addStartNpc(ARNOLD_ID); + addTalkId(JACKSON_ID, SILVIA_ID, ARNOLD_ID, RANT_ID); registerQuestItems(DELIVERY_LIST_ID, HEAVY_WOOD_BOX_ID, CLOTH_BUNDLE_ID, CLAY_POT_ID, JACKSONS_RECEIPT_ID, SILVIAS_RECEIPT_ID, RANTS_RECEIPT_ID); } diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00611_AllianceWithVarkaSilenos/31378-19.html b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00611_AllianceWithVarkaSilenos/31378-19.html index 795c5d3404..2587496e5b 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00611_AllianceWithVarkaSilenos/31378-19.html +++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00611_AllianceWithVarkaSilenos/31378-19.html @@ -3,5 +3,5 @@ What are you still doing here? Get to the battlefield immediately!<br> You've promised us you'd bring from the <font color="LEVEL">Ketra Orcs 300 badges of grunts, 300 badges of officers, 200 badges of captains and a Feather of Valor</font>. This feather can be obtained by undertaking the <font color="LEVEL">Prove Your Courage</font> quest, a mission assigned by Ashas Varka Durai, the elder of our tribe.<br> <a action="bypass -h Quest Q00611_AllianceWithVarkaSilenos 31378-12a.html">"I will go destroy my enemy!"</a><br> If you don't like your job, you're always welcome to quit!<br> -<a action="Quest Q00611_AllianceWithVarkaSilenos 31378-25.html">"I want to quit."</a> +<a action="bypass -h Quest Q00611_AllianceWithVarkaSilenos 31378-25.html">"I want to quit."</a> </body></html> \ No newline at end of file -- GitLab