Changeset 8630 for trunk/L2J_DataPack/dist/game/data/scripts/mods/eventmodRabbits/eventmodRabbits.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/mods/eventmodRabbits/eventmodRabbits.java (modified) (3 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/mods/eventmodRabbits/eventmodRabbits.java
r7665 r8630 59 59 public static final int _skill_magic_eye = 629; 60 60 61 // Drop data 61 /** 62 * Drop data:<br /> 63 * Higher the chance harder the item.<br /> 64 * ItemId, chance in percent, min amount, max amount 65 */ 62 66 private static final int[][] DROPLIST = 63 67 { … … 141 145 _eventTask = ThreadPoolManager.getInstance().scheduleGeneral(new Runnable() 142 146 { 147 @Override 143 148 public void run() 144 149 { … … 257 262 final int chance = Rnd.get(100); 258 263 259 for (int i = 0; i < droplist.length; i++) 260 { 261 int[] drop = droplist[i]; 264 for (int[] drop : droplist) 265 { 262 266 if (chance > drop[1]) 263 267 {
Note: See TracChangeset
for help on using the changeset viewer.
