Changeset 8630 for trunk/L2J_DataPack/dist/game/data/scripts/quests/Q153_DeliverGoods/Q153_DeliverGoods.java
- Timestamp:
- Jan 16, 2012 7:56:19 AM (4 months ago)
- Location:
- trunk/L2J_DataPack
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
dist/game/data/scripts/quests/Q153_DeliverGoods/Q153_DeliverGoods.java (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/L2J_DataPack
- Property svn:mergeinfo changed
/branches/unstable/L2J_DataPack_BETA merged: 8407-8426,8428-8480,8482-8491,8493-8588,8590-8629
- Property svn:mergeinfo changed
-
trunk/L2J_DataPack/dist/game/data/scripts/quests/Q153_DeliverGoods/Q153_DeliverGoods.java
r8587 r8630 132 132 if (npc.getNpcId() == JacksonId) 133 133 { 134 if (st. getQuestItemsCount(HeavyWoodBoxId) > 0)134 if (st.hasQuestItems(HeavyWoodBoxId)) 135 135 { 136 136 htmltext = "30002-01.html"; … … 145 145 else if (npc.getNpcId() == SilviaId) 146 146 { 147 if (st. getQuestItemsCount(ClothBundleId) > 0)147 if (st.hasQuestItems(ClothBundleId)) 148 148 { 149 149 htmltext = "30003-01.html"; … … 159 159 else if (npc.getNpcId() == RantId) 160 160 { 161 if (st. getQuestItemsCount(ClayPotId) > 0)161 if (st.hasQuestItems(ClayPotId)) 162 162 { 163 163 htmltext = "30054-01.html"; … … 171 171 } 172 172 173 if ((st.getInt("cond") == 1) && (st.getQuestItemsCount(JacksonsReceipt) > 0) && (st.getQuestItemsCount(SilviasReceipt) > 0) && (st.getQuestItemsCount(RantsReceipt) > 0))173 if ((st.getInt("cond") == 1) && st.hasQuestItems(JacksonsReceipt) && st.hasQuestItems(SilviasReceipt) && st.hasQuestItems(RantsReceipt)) 174 174 { 175 175 st.set("cond", "2");
Note: See TracChangeset
for help on using the changeset viewer.
