Skip to content

Instantly share code, notes, and snippets.

@kostantinos
Last active December 21, 2015 23:08
Show Gist options
  • Save kostantinos/6379827 to your computer and use it in GitHub Desktop.
Save kostantinos/6379827 to your computer and use it in GitHub Desktop.
fix for 153 quest
### Eclipse Workspace Patch 1.0
#P L2J_DataPack_BETA
Index: dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html
===================================================================
--- dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html (revision 9938)
+++ dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-03.html (working copy)
@@ -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
Index: dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html
===================================================================
--- dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html (revision 9938)
+++ dist/game/data/scripts/quests/Q00153_DeliverGoods/30041-02.html (working copy)
@@ -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
Index: dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java
===================================================================
--- dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java (revision 9938)
+++ dist/game/data/scripts/quests/Q00153_DeliverGoods/Q00153_DeliverGoods.java (working copy)
@@ -52,7 +52,8 @@
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment