Changeset 8630 for trunk/L2J_DataPack/dist/game/data/scripts/custom/ShadowWeapons/ShadowWeapons.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/custom/ShadowWeapons/ShadowWeapons.java (modified) (1 diff)
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/custom/ShadowWeapons/ShadowWeapons.java
r8406 r8630 65 65 return htmltext; 66 66 67 long has_d = st.getQuestItemsCount(D_COUPON);68 long has_c = st.getQuestItemsCount(C_COUPON);67 boolean has_d = st.hasQuestItems(D_COUPON); 68 boolean has_c = st.hasQuestItems(C_COUPON); 69 69 70 if (has_d > 0 || has_c > 0)70 if (has_d || has_c) 71 71 { 72 72 // let's assume character had both c & d-grade coupons, we'll confirm later 73 73 String multisell = "306893003"; 74 if ( has_d < 1)74 if (!has_d) 75 75 { 76 76 // if s/he had c-grade only... 77 77 multisell = "306893002"; 78 78 } 79 else if ( has_c < 1)79 else if (!has_c) 80 80 { 81 81 // or d-grade only.
Note: See TracChangeset
for help on using the changeset viewer.
