Ignore:
Timestamp:
Jan 16, 2012 7:56:19 AM (4 months ago)
Author:
MELERIX
Message:

STABLE: Sync with BETA [8629]

Location:
trunk/L2J_DataPack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/L2J_DataPack

  • trunk/L2J_DataPack/dist/game/data/scripts/quests/Q153_DeliverGoods/Q153_DeliverGoods.java

    r8587 r8630  
    132132                                if (npc.getNpcId() == JacksonId) 
    133133                                { 
    134                                         if (st.getQuestItemsCount(HeavyWoodBoxId) > 0) 
     134                                        if (st.hasQuestItems(HeavyWoodBoxId)) 
    135135                                        { 
    136136                                                htmltext = "30002-01.html"; 
     
    145145                                else if (npc.getNpcId() == SilviaId) 
    146146                                { 
    147                                         if (st.getQuestItemsCount(ClothBundleId) > 0) 
     147                                        if (st.hasQuestItems(ClothBundleId)) 
    148148                                        { 
    149149                                                htmltext = "30003-01.html"; 
     
    159159                                else if (npc.getNpcId() == RantId) 
    160160                                { 
    161                                         if (st.getQuestItemsCount(ClayPotId) > 0) 
     161                                        if (st.hasQuestItems(ClayPotId)) 
    162162                                        { 
    163163                                                htmltext = "30054-01.html"; 
     
    171171                                } 
    172172                                 
    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)) 
    174174                                { 
    175175                                        st.set("cond", "2"); 
Note: See TracChangeset for help on using the changeset viewer.