diff --git a/2006Redone Client/2006Redone Client.iml b/2006Redone Client/2006Redone Client.iml new file mode 100644 index 00000000..c90834f2 --- /dev/null +++ b/2006Redone Client/2006Redone Client.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/2006Redone Server/2006Redone Server.iml b/2006Redone Server/2006Redone Server.iml new file mode 100644 index 00000000..9ffe63cc --- /dev/null +++ b/2006Redone Server/2006Redone Server.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/2006Redone Server/data/logs/pickupitem/irdb.txt b/2006Redone Server/data/logs/pickupitem/irdb.txt index 752dede0..df3bdc15 100644 --- a/2006Redone Server/data/logs/pickupitem/irdb.txt +++ b/2006Redone Server/data/logs/pickupitem/irdb.txt @@ -1 +1,2 @@ [2019/06/19] 22:14 irdb picked up bronze dagger itemX: 3207, itemY: 3215 +[2019/10/03] 18:17 irdb picked up cabbage itemX: 3217, itemY: 9622 diff --git a/2006Redone Server/src/redone/game/players/Player.java b/2006Redone Server/src/redone/game/players/Player.java index 280a1d50..b8d0bfb7 100644 --- a/2006Redone Server/src/redone/game/players/Player.java +++ b/2006Redone Server/src/redone/game/players/Player.java @@ -321,33 +321,33 @@ public abstract class Player { } public boolean inCwSafe() { - return (Area(2423, 2431, 3072, 3080) || Area(2368, 2376, 3127, 3135)) + return (isInAreaxxyy(2423, 2431, 3072, 3080) || isInAreaxxyy(2368, 2376, 3127, 3135)) && heightLevel == 1; } public boolean inZammyWait() { - return Area(2409, 2431, 9511, 9535); + return isInAreaxxyy(2409, 2431, 9511, 9535); } public boolean inSaraWait() { - return Area(2368, 2392, 9479, 9498); + return isInAreaxxyy(2368, 2392, 9479, 9498); } public boolean inCwGame() { - return Area(2368, 2431, 9479, 9535) || Area(2368, 2431, 3072, 3135) + return isInAreaxxyy(2368, 2431, 9479, 9535) || isInAreaxxyy(2368, 2431, 3072, 3135) && !inSaraWait() && !inZammyWait(); } public boolean inCwUnderground() { - return Area(2368, 2431, 9479, 9535) && !inSaraWait() && !inZammyWait(); + return isInAreaxxyy(2368, 2431, 9479, 9535) && !inSaraWait() && !inZammyWait(); } public boolean inZammyBase() { - return Area(2368, 2384, 3118, 3135); + return isInAreaxxyy(2368, 2384, 3118, 3135); } public boolean inSaraBase() { - return Area(2414, 2431, 3072, 3088); + return isInAreaxxyy(2414, 2431, 3072, 3088); } public void gameInterface(int id) { @@ -584,6 +584,36 @@ public abstract class Player { return false; } + public boolean inBankArea() { + return isInArea(3205,3226,3214,3211) || //Lumbridge Bank + isInArea(3264,3175,3264,3136) || //Al Kharid Bank + isInArea(3492,3215,3456,3200) || //Burgh d rott + isInArea(3377,3275,3386,3266) || //Clan Wars + isInArea(3087,3248,3098,3239) || //Draynor + isInArea(3248,3426,3258,3414) || //Varrock East + isInArea(3178,3449,3136,3392) || //Varrock West + isInArea(3088,3501,3100,3486) || //Edgeville + isInArea(3944, 3328,3008,3328) || //Falador East + isInArea(2940,3375,2951,3365) || //Falador West + isInArea(2839,3547,2844,3540) || //Warriors guild + isInArea(2804,3447,2815,3438) || //Catherby + isInArea(2718,3500,2733,3485) || //Seer's village + isInArea(2610,3338,2622,3326) || //North ardy + isInArea(2645,3288,2660,3281) || //South ardy + isInArea(2658,3165,2670,3158) || //Khazard + isInArea(2607,3098,2618,3087) || //Yanille + isInArea(2436, 3089, 2432, 3072) || //Castle Wars + isInArea(2348,3168,2358,3159) || //Lleyta + isInArea(2324,3694,2334,3685) || //Piscatoris + isInArea(2527,3581,2539,3563) || //Barbarian Assault + isInArea(2425,3435,2453,3411) || //Tree Gnome Stronghold + isInArea(2843,2958,2816,2944) || //Shilo Village + isInArea(3113,3131,3131,3118) || //Tutorial Island + isInArea(3422,2895,3433,2885) || //Nardah + isInArea(3685,3473,3694,3461) || //Phasmatys + false; + } + public boolean inDesert() { return absX >= 3137 && absX <= 3321 && absY >= 2880 && absY <= 3115; } @@ -633,25 +663,29 @@ public abstract class Player { } public boolean inBank() { // Area(top left X, bottom right X, bottom right Y, top left Y) - return Area(3090, 3099, 3487, 3500) || Area(3089, 3090, 3492, 3498) || Area(3249, 3258, 3413, 3428) || Area(3180, 3191, 3432, 3448) || Area(2945, 2948, 3365, 3374) || - Area(2943, 2948, 3367, 3374) || Area(2945, 2950, 3365, 3370) || Area(3009, 3018, 3352, 3359) || Area(3017, 3022, 3353, 3357); + return isInAreaxxyy(3090, 3099, 3487, 3500) || isInAreaxxyy(3089, 3090, 3492, 3498) || isInAreaxxyy(3249, 3258, 3413, 3428) || isInAreaxxyy(3180, 3191, 3432, 3448) || isInAreaxxyy(2945, 2948, 3365, 3374) || + isInAreaxxyy(2943, 2948, 3367, 3374) || isInAreaxxyy(2945, 2950, 3365, 3370) || isInAreaxxyy(3009, 3018, 3352, 3359) || isInAreaxxyy(3017, 3022, 3353, 3357); } public boolean inLumbBuilding() { - return Area(3205, 3216, 3209, 3228) || Area(3229, 3233, 3206, 3208) || Area(3228, 3233, 3201, 3205) || Area(3230, 3237, 3195, 3198) || Area(3238, 3229, 3209, 3211) || - Area(3240, 3247, 3204, 3215) || Area(3247, 3252, 3190, 3195) || Area(3227, 3230, 3212, 3216) || Area(3227, 3230, 3221, 3225) || Area(3229, 3232, 3236, 3241) || - Area(3209, 3213, 3243, 3250) || Area(3222, 3229, 3252, 3257) || Area(3184, 3192, 3270, 3275) || Area(3222, 3224, 3292, 3294) || Area(3225, 3230, 3287, 3228) || - Area(3243, 3248, 3244, 3248) || Area(3202, 3205, 3167, 3170) || Area(3231, 3238, 3151, 3155) || Area(3233, 3234, 3156, 3156) || Area(3163, 3170, 3305, 3308) || - Area(3165, 3168, 3303, 3310); + return isInAreaxxyy(3205, 3216, 3209, 3228) || isInAreaxxyy(3229, 3233, 3206, 3208) || isInAreaxxyy(3228, 3233, 3201, 3205) || isInAreaxxyy(3230, 3237, 3195, 3198) || isInAreaxxyy(3238, 3229, 3209, 3211) || + isInAreaxxyy(3240, 3247, 3204, 3215) || isInAreaxxyy(3247, 3252, 3190, 3195) || isInAreaxxyy(3227, 3230, 3212, 3216) || isInAreaxxyy(3227, 3230, 3221, 3225) || isInAreaxxyy(3229, 3232, 3236, 3241) || + isInAreaxxyy(3209, 3213, 3243, 3250) || isInAreaxxyy(3222, 3229, 3252, 3257) || isInAreaxxyy(3184, 3192, 3270, 3275) || isInAreaxxyy(3222, 3224, 3292, 3294) || isInAreaxxyy(3225, 3230, 3287, 3228) || + isInAreaxxyy(3243, 3248, 3244, 3248) || isInAreaxxyy(3202, 3205, 3167, 3170) || isInAreaxxyy(3231, 3238, 3151, 3155) || isInAreaxxyy(3233, 3234, 3156, 3156) || isInAreaxxyy(3163, 3170, 3305, 3308) || + isInAreaxxyy(3165, 3168, 3303, 3310); } public boolean inDraynorBuilding() { - return Area(3097, 3102, 3277, 3281) || Area(3088, 3092, 3273, 3276) || Area(3096, 3102, 3266, 3270) || Area(3089, 3095, 3265, 3268) || Area(3083, 3088, 3256, 3261) || - Area(3087, 3094, 3251, 3255) || Area(3121, 3130, 3240, 3246) || Area(3102, 3112, 3162, 3165) || Area(3107, 3111, 3166, 3166) || Area(3103, 3115, 3157, 3161) || - Area(3105, 3114, 3156, 3156) || Area(3105, 3113, 3155, 3155) || Area(3106, 3112, 3154, 3154) || Area(3092, 3097, 3240, 3246); + return isInAreaxxyy(3097, 3102, 3277, 3281) || isInAreaxxyy(3088, 3092, 3273, 3276) || isInAreaxxyy(3096, 3102, 3266, 3270) || isInAreaxxyy(3089, 3095, 3265, 3268) || isInAreaxxyy(3083, 3088, 3256, 3261) || + isInAreaxxyy(3087, 3094, 3251, 3255) || isInAreaxxyy(3121, 3130, 3240, 3246) || isInAreaxxyy(3102, 3112, 3162, 3165) || isInAreaxxyy(3107, 3111, 3166, 3166) || isInAreaxxyy(3103, 3115, 3157, 3161) || + isInAreaxxyy(3105, 3114, 3156, 3156) || isInAreaxxyy(3105, 3113, 3155, 3155) || isInAreaxxyy(3106, 3112, 3154, 3154) || isInAreaxxyy(3092, 3097, 3240, 3246); } - public boolean Area(final int x1, final int x2, final int y1, final int y2) { + public boolean isInArea(final int x1, final int y1, final int x2, final int y2) { + return (absX >= x1 && absX <= x2 || absX <= x1 && absX >= x2) && (absY >= y1 && absY <= y2 || absY <= y1 && absY >= y2); + } + + public boolean isInAreaxxyy(final int x1, final int x2, final int y1, final int y2) { return absX >= x1 && absX <= x2 && absY >= y1 && absY <= y2; } @@ -1945,4 +1979,5 @@ public abstract class Player { } updateRequired = true; } + } diff --git a/2006Redone Server/src/redone/game/players/PlayerAssistant.java b/2006Redone Server/src/redone/game/players/PlayerAssistant.java index bb2b7ce9..0450f9fd 100644 --- a/2006Redone Server/src/redone/game/players/PlayerAssistant.java +++ b/2006Redone Server/src/redone/game/players/PlayerAssistant.java @@ -1431,6 +1431,15 @@ public class PlayerAssistant { player.getPlayerAssistant().closeAllWindows(); return; } + + if (!player.inBankArea()) + { + player.getActionSender().sendMessage("You can't open a bank unless you're in a bank area!"); + player.getActionSender().sendMessage("If this is a bug, please report it! Your coords are [" + player.absX + "," + player.absY + "]"); + player.getPlayerAssistant().closeAllWindows(); + return; + } + if (player.absX == 2813 && player.absY == 3443) { return; } diff --git a/2006Redone Server/src/redone/net/packets/impl/ClickObject.java b/2006Redone Server/src/redone/net/packets/impl/ClickObject.java index fb18e37a..afd8e75e 100644 --- a/2006Redone Server/src/redone/net/packets/impl/ClickObject.java +++ b/2006Redone Server/src/redone/net/packets/impl/ClickObject.java @@ -40,7 +40,7 @@ public class ClickObject implements PacketType { } //if(player.goodDistance(player.getX(), player.getY(), player.objectX, player.objectY, 1)) { if (Doors.getSingleton().handleDoor(player.objectId, player.objectX, player.objectY, player.heightLevel)) { - System.out.println("Door debug?"); + //System.out.println("Door debug?"); } //} diff --git a/2006Redone Server/src/redone/net/packets/impl/Commands.java b/2006Redone Server/src/redone/net/packets/impl/Commands.java index 97d1ffb6..fd70935e 100644 --- a/2006Redone Server/src/redone/net/packets/impl/Commands.java +++ b/2006Redone Server/src/redone/net/packets/impl/Commands.java @@ -40,6 +40,14 @@ public class Commands implements PacketType { } public static void playerCommands(Client player, String playerCommand) { + if (playerCommand.equalsIgnoreCase("bank")) { + player.getPlayerAssistant().openUpBank(); + } + + if (playerCommand.equalsIgnoreCase("coords") || playerCommand.equalsIgnoreCase("coord") || playerCommand.equalsIgnoreCase("pos")){ + player.getActionSender().sendMessage("Your coords are [" + player.absX + "," + player.absY + "]"); + } + if (playerCommand.equalsIgnoreCase("players")) { if (PlayerHandler.getPlayerCount() > 1) { player.getActionSender().sendMessage("There are currently " + PlayerHandler.getPlayerCount() + " players online."); diff --git a/2006Redone file_server/2006Redone file_server.iml b/2006Redone file_server/2006Redone file_server.iml new file mode 100644 index 00000000..71d6fe7e --- /dev/null +++ b/2006Redone file_server/2006Redone file_server.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/2006rebotted/2006rebotted.iml b/2006rebotted/2006rebotted.iml new file mode 100644 index 00000000..8330af7a --- /dev/null +++ b/2006rebotted/2006rebotted.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/production/2006Redone Client/Animable.class b/production/2006Redone Client/Animable.class new file mode 100644 index 00000000..8935fd4a Binary files /dev/null and b/production/2006Redone Client/Animable.class differ diff --git a/production/2006Redone Client/Animable_Sub3.class b/production/2006Redone Client/Animable_Sub3.class new file mode 100644 index 00000000..8e366be5 Binary files /dev/null and b/production/2006Redone Client/Animable_Sub3.class differ diff --git a/production/2006Redone Client/Animable_Sub4.class b/production/2006Redone Client/Animable_Sub4.class new file mode 100644 index 00000000..ceb40aa8 Binary files /dev/null and b/production/2006Redone Client/Animable_Sub4.class differ diff --git a/production/2006Redone Client/Animable_Sub5.class b/production/2006Redone Client/Animable_Sub5.class new file mode 100644 index 00000000..ee3105b9 Binary files /dev/null and b/production/2006Redone Client/Animable_Sub5.class differ diff --git a/production/2006Redone Client/Animation.class b/production/2006Redone Client/Animation.class new file mode 100644 index 00000000..0f4d06a6 Binary files /dev/null and b/production/2006Redone Client/Animation.class differ diff --git a/production/2006Redone Client/Background.class b/production/2006Redone Client/Background.class new file mode 100644 index 00000000..89719a63 Binary files /dev/null and b/production/2006Redone Client/Background.class differ diff --git a/production/2006Redone Client/Censor.class b/production/2006Redone Client/Censor.class new file mode 100644 index 00000000..f3f1e5d8 Binary files /dev/null and b/production/2006Redone Client/Censor.class differ diff --git a/production/2006Redone Client/Class11.class b/production/2006Redone Client/Class11.class new file mode 100644 index 00000000..4f243cc6 Binary files /dev/null and b/production/2006Redone Client/Class11.class differ diff --git a/production/2006Redone Client/Class13.class b/production/2006Redone Client/Class13.class new file mode 100644 index 00000000..18c3416b Binary files /dev/null and b/production/2006Redone Client/Class13.class differ diff --git a/production/2006Redone Client/Class18.class b/production/2006Redone Client/Class18.class new file mode 100644 index 00000000..f3f81698 Binary files /dev/null and b/production/2006Redone Client/Class18.class differ diff --git a/production/2006Redone Client/Class21.class b/production/2006Redone Client/Class21.class new file mode 100644 index 00000000..4aedf407 Binary files /dev/null and b/production/2006Redone Client/Class21.class differ diff --git a/production/2006Redone Client/Class29.class b/production/2006Redone Client/Class29.class new file mode 100644 index 00000000..71776976 Binary files /dev/null and b/production/2006Redone Client/Class29.class differ diff --git a/production/2006Redone Client/Class30_Sub1.class b/production/2006Redone Client/Class30_Sub1.class new file mode 100644 index 00000000..3ce14fcd Binary files /dev/null and b/production/2006Redone Client/Class30_Sub1.class differ diff --git a/production/2006Redone Client/Class32.class b/production/2006Redone Client/Class32.class new file mode 100644 index 00000000..0b8251d2 Binary files /dev/null and b/production/2006Redone Client/Class32.class differ diff --git a/production/2006Redone Client/Class33.class b/production/2006Redone Client/Class33.class new file mode 100644 index 00000000..52a77d4f Binary files /dev/null and b/production/2006Redone Client/Class33.class differ diff --git a/production/2006Redone Client/Class36.class b/production/2006Redone Client/Class36.class new file mode 100644 index 00000000..c727e37e Binary files /dev/null and b/production/2006Redone Client/Class36.class differ diff --git a/production/2006Redone Client/Class39.class b/production/2006Redone Client/Class39.class new file mode 100644 index 00000000..bf3e538a Binary files /dev/null and b/production/2006Redone Client/Class39.class differ diff --git a/production/2006Redone Client/Class4.class b/production/2006Redone Client/Class4.class new file mode 100644 index 00000000..43f2887f Binary files /dev/null and b/production/2006Redone Client/Class4.class differ diff --git a/production/2006Redone Client/Class40.class b/production/2006Redone Client/Class40.class new file mode 100644 index 00000000..2f216f6c Binary files /dev/null and b/production/2006Redone Client/Class40.class differ diff --git a/production/2006Redone Client/Class43.class b/production/2006Redone Client/Class43.class new file mode 100644 index 00000000..0a63cf6e Binary files /dev/null and b/production/2006Redone Client/Class43.class differ diff --git a/production/2006Redone Client/Class47.class b/production/2006Redone Client/Class47.class new file mode 100644 index 00000000..cd2c68d7 Binary files /dev/null and b/production/2006Redone Client/Class47.class differ diff --git a/production/2006Redone Client/Class56.class b/production/2006Redone Client/Class56.class new file mode 100644 index 00000000..c2ab9979 Binary files /dev/null and b/production/2006Redone Client/Class56.class differ diff --git a/production/2006Redone Client/Class56_Sub1.class b/production/2006Redone Client/Class56_Sub1.class new file mode 100644 index 00000000..ddf50841 Binary files /dev/null and b/production/2006Redone Client/Class56_Sub1.class differ diff --git a/production/2006Redone Client/Class56_Sub1_Sub1.class b/production/2006Redone Client/Class56_Sub1_Sub1.class new file mode 100644 index 00000000..d33bd68d Binary files /dev/null and b/production/2006Redone Client/Class56_Sub1_Sub1.class differ diff --git a/production/2006Redone Client/Class56_Sub1_Sub2.class b/production/2006Redone Client/Class56_Sub1_Sub2.class new file mode 100644 index 00000000..cc0b1bf6 Binary files /dev/null and b/production/2006Redone Client/Class56_Sub1_Sub2.class differ diff --git a/production/2006Redone Client/Class6.class b/production/2006Redone Client/Class6.class new file mode 100644 index 00000000..4fb2624c Binary files /dev/null and b/production/2006Redone Client/Class6.class differ diff --git a/production/2006Redone Client/ClientSettings.class b/production/2006Redone Client/ClientSettings.class new file mode 100644 index 00000000..ac8ef1c6 Binary files /dev/null and b/production/2006Redone Client/ClientSettings.class differ diff --git a/production/2006Redone Client/CollisionMap.class b/production/2006Redone Client/CollisionMap.class new file mode 100644 index 00000000..67d1d20a Binary files /dev/null and b/production/2006Redone Client/CollisionMap.class differ diff --git a/production/2006Redone Client/Decompressor.class b/production/2006Redone Client/Decompressor.class new file mode 100644 index 00000000..ae8d6a0f Binary files /dev/null and b/production/2006Redone Client/Decompressor.class differ diff --git a/production/2006Redone Client/DrawingArea.class b/production/2006Redone Client/DrawingArea.class new file mode 100644 index 00000000..fc61c0eb Binary files /dev/null and b/production/2006Redone Client/DrawingArea.class differ diff --git a/production/2006Redone Client/DummyClass.class b/production/2006Redone Client/DummyClass.class new file mode 100644 index 00000000..4679df24 Binary files /dev/null and b/production/2006Redone Client/DummyClass.class differ diff --git a/production/2006Redone Client/Entity.class b/production/2006Redone Client/Entity.class new file mode 100644 index 00000000..033aa9d7 Binary files /dev/null and b/production/2006Redone Client/Entity.class differ diff --git a/production/2006Redone Client/EntityDef.class b/production/2006Redone Client/EntityDef.class new file mode 100644 index 00000000..14497b13 Binary files /dev/null and b/production/2006Redone Client/EntityDef.class differ diff --git a/production/2006Redone Client/Flo.class b/production/2006Redone Client/Flo.class new file mode 100644 index 00000000..1f04f02b Binary files /dev/null and b/production/2006Redone Client/Flo.class differ diff --git a/production/2006Redone Client/Game.class b/production/2006Redone Client/Game.class new file mode 100644 index 00000000..1daa74d6 Binary files /dev/null and b/production/2006Redone Client/Game.class differ diff --git a/production/2006Redone Client/Ground.class b/production/2006Redone Client/Ground.class new file mode 100644 index 00000000..d2bd9573 Binary files /dev/null and b/production/2006Redone Client/Ground.class differ diff --git a/production/2006Redone Client/IDK.class b/production/2006Redone Client/IDK.class new file mode 100644 index 00000000..b8a08b73 Binary files /dev/null and b/production/2006Redone Client/IDK.class differ diff --git a/production/2006Redone Client/ISAACRandomGen.class b/production/2006Redone Client/ISAACRandomGen.class new file mode 100644 index 00000000..cd1312fa Binary files /dev/null and b/production/2006Redone Client/ISAACRandomGen.class differ diff --git a/production/2006Redone Client/InputStream_Sub1.class b/production/2006Redone Client/InputStream_Sub1.class new file mode 100644 index 00000000..d60e61fc Binary files /dev/null and b/production/2006Redone Client/InputStream_Sub1.class differ diff --git a/production/2006Redone Client/Item.class b/production/2006Redone Client/Item.class new file mode 100644 index 00000000..c3e2e81c Binary files /dev/null and b/production/2006Redone Client/Item.class differ diff --git a/production/2006Redone Client/ItemDef.class b/production/2006Redone Client/ItemDef.class new file mode 100644 index 00000000..999169ce Binary files /dev/null and b/production/2006Redone Client/ItemDef.class differ diff --git a/production/2006Redone Client/MRUNodes.class b/production/2006Redone Client/MRUNodes.class new file mode 100644 index 00000000..57570c26 Binary files /dev/null and b/production/2006Redone Client/MRUNodes.class differ diff --git a/production/2006Redone Client/Main.class b/production/2006Redone Client/Main.class new file mode 100644 index 00000000..8fc698da Binary files /dev/null and b/production/2006Redone Client/Main.class differ diff --git a/production/2006Redone Client/Midi.class b/production/2006Redone Client/Midi.class new file mode 100644 index 00000000..fec42090 Binary files /dev/null and b/production/2006Redone Client/Midi.class differ diff --git a/production/2006Redone Client/Model.class b/production/2006Redone Client/Model.class new file mode 100644 index 00000000..93b4e5e2 Binary files /dev/null and b/production/2006Redone Client/Model.class differ diff --git a/production/2006Redone Client/MouseDetection.class b/production/2006Redone Client/MouseDetection.class new file mode 100644 index 00000000..93503ee8 Binary files /dev/null and b/production/2006Redone Client/MouseDetection.class differ diff --git a/production/2006Redone Client/NPC.class b/production/2006Redone Client/NPC.class new file mode 100644 index 00000000..d5c1791b Binary files /dev/null and b/production/2006Redone Client/NPC.class differ diff --git a/production/2006Redone Client/Node.class b/production/2006Redone Client/Node.class new file mode 100644 index 00000000..256e290e Binary files /dev/null and b/production/2006Redone Client/Node.class differ diff --git a/production/2006Redone Client/NodeCache.class b/production/2006Redone Client/NodeCache.class new file mode 100644 index 00000000..ab13a2f9 Binary files /dev/null and b/production/2006Redone Client/NodeCache.class differ diff --git a/production/2006Redone Client/NodeList.class b/production/2006Redone Client/NodeList.class new file mode 100644 index 00000000..e398b4f7 Binary files /dev/null and b/production/2006Redone Client/NodeList.class differ diff --git a/production/2006Redone Client/NodeSub.class b/production/2006Redone Client/NodeSub.class new file mode 100644 index 00000000..1f683cc0 Binary files /dev/null and b/production/2006Redone Client/NodeSub.class differ diff --git a/production/2006Redone Client/NodeSubList.class b/production/2006Redone Client/NodeSubList.class new file mode 100644 index 00000000..8c9d5b30 Binary files /dev/null and b/production/2006Redone Client/NodeSubList.class differ diff --git a/production/2006Redone Client/Object1.class b/production/2006Redone Client/Object1.class new file mode 100644 index 00000000..e2bcb301 Binary files /dev/null and b/production/2006Redone Client/Object1.class differ diff --git a/production/2006Redone Client/Object2.class b/production/2006Redone Client/Object2.class new file mode 100644 index 00000000..48daa5ea Binary files /dev/null and b/production/2006Redone Client/Object2.class differ diff --git a/production/2006Redone Client/Object3.class b/production/2006Redone Client/Object3.class new file mode 100644 index 00000000..533f4a89 Binary files /dev/null and b/production/2006Redone Client/Object3.class differ diff --git a/production/2006Redone Client/Object4.class b/production/2006Redone Client/Object4.class new file mode 100644 index 00000000..8f37d783 Binary files /dev/null and b/production/2006Redone Client/Object4.class differ diff --git a/production/2006Redone Client/Object5.class b/production/2006Redone Client/Object5.class new file mode 100644 index 00000000..d9f146e8 Binary files /dev/null and b/production/2006Redone Client/Object5.class differ diff --git a/production/2006Redone Client/ObjectDef.class b/production/2006Redone Client/ObjectDef.class new file mode 100644 index 00000000..80822623 Binary files /dev/null and b/production/2006Redone Client/ObjectDef.class differ diff --git a/production/2006Redone Client/ObjectManager.class b/production/2006Redone Client/ObjectManager.class new file mode 100644 index 00000000..e3dc16db Binary files /dev/null and b/production/2006Redone Client/ObjectManager.class differ diff --git a/production/2006Redone Client/OnDemandData.class b/production/2006Redone Client/OnDemandData.class new file mode 100644 index 00000000..bf533140 Binary files /dev/null and b/production/2006Redone Client/OnDemandData.class differ diff --git a/production/2006Redone Client/OnDemandFetcher.class b/production/2006Redone Client/OnDemandFetcher.class new file mode 100644 index 00000000..eaa3ab2d Binary files /dev/null and b/production/2006Redone Client/OnDemandFetcher.class differ diff --git a/production/2006Redone Client/OnDemandFetcherParent.class b/production/2006Redone Client/OnDemandFetcherParent.class new file mode 100644 index 00000000..c4ca3086 Binary files /dev/null and b/production/2006Redone Client/OnDemandFetcherParent.class differ diff --git a/production/2006Redone Client/Player.class b/production/2006Redone Client/Player.class new file mode 100644 index 00000000..6f993705 Binary files /dev/null and b/production/2006Redone Client/Player.class differ diff --git a/production/2006Redone Client/RSApplet.class b/production/2006Redone Client/RSApplet.class new file mode 100644 index 00000000..5a90b751 Binary files /dev/null and b/production/2006Redone Client/RSApplet.class differ diff --git a/production/2006Redone Client/RSFrame.class b/production/2006Redone Client/RSFrame.class new file mode 100644 index 00000000..8128da45 Binary files /dev/null and b/production/2006Redone Client/RSFrame.class differ diff --git a/production/2006Redone Client/RSImageProducer.class b/production/2006Redone Client/RSImageProducer.class new file mode 100644 index 00000000..cf54a566 Binary files /dev/null and b/production/2006Redone Client/RSImageProducer.class differ diff --git a/production/2006Redone Client/RSInterface.class b/production/2006Redone Client/RSInterface.class new file mode 100644 index 00000000..38a47de8 Binary files /dev/null and b/production/2006Redone Client/RSInterface.class differ diff --git a/production/2006Redone Client/RSSocket.class b/production/2006Redone Client/RSSocket.class new file mode 100644 index 00000000..fcccc93e Binary files /dev/null and b/production/2006Redone Client/RSSocket.class differ diff --git a/production/2006Redone Client/Runnable_Impl1.class b/production/2006Redone Client/Runnable_Impl1.class new file mode 100644 index 00000000..3fe673f6 Binary files /dev/null and b/production/2006Redone Client/Runnable_Impl1.class differ diff --git a/production/2006Redone Client/Signlink$Position.class b/production/2006Redone Client/Signlink$Position.class new file mode 100644 index 00000000..62ef7e45 Binary files /dev/null and b/production/2006Redone Client/Signlink$Position.class differ diff --git a/production/2006Redone Client/Signlink.class b/production/2006Redone Client/Signlink.class new file mode 100644 index 00000000..13ca51b2 Binary files /dev/null and b/production/2006Redone Client/Signlink.class differ diff --git a/production/2006Redone Client/SizeConstants.class b/production/2006Redone Client/SizeConstants.class new file mode 100644 index 00000000..f247f392 Binary files /dev/null and b/production/2006Redone Client/SizeConstants.class differ diff --git a/production/2006Redone Client/Skills.class b/production/2006Redone Client/Skills.class new file mode 100644 index 00000000..19fff06f Binary files /dev/null and b/production/2006Redone Client/Skills.class differ diff --git a/production/2006Redone Client/SoundPlayer.class b/production/2006Redone Client/SoundPlayer.class new file mode 100644 index 00000000..58f256bd Binary files /dev/null and b/production/2006Redone Client/SoundPlayer.class differ diff --git a/production/2006Redone Client/Sounds.class b/production/2006Redone Client/Sounds.class new file mode 100644 index 00000000..e85ee98c Binary files /dev/null and b/production/2006Redone Client/Sounds.class differ diff --git a/production/2006Redone Client/SpotAnim.class b/production/2006Redone Client/SpotAnim.class new file mode 100644 index 00000000..93e5a14c Binary files /dev/null and b/production/2006Redone Client/SpotAnim.class differ diff --git a/production/2006Redone Client/Sprite.class b/production/2006Redone Client/Sprite.class new file mode 100644 index 00000000..8d2e43d3 Binary files /dev/null and b/production/2006Redone Client/Sprite.class differ diff --git a/production/2006Redone Client/Stream.class b/production/2006Redone Client/Stream.class new file mode 100644 index 00000000..221f724c Binary files /dev/null and b/production/2006Redone Client/Stream.class differ diff --git a/production/2006Redone Client/StreamLoader.class b/production/2006Redone Client/StreamLoader.class new file mode 100644 index 00000000..bbc237b3 Binary files /dev/null and b/production/2006Redone Client/StreamLoader.class differ diff --git a/production/2006Redone Client/TextClass.class b/production/2006Redone Client/TextClass.class new file mode 100644 index 00000000..47fc3305 Binary files /dev/null and b/production/2006Redone Client/TextClass.class differ diff --git a/production/2006Redone Client/TextDrawingArea.class b/production/2006Redone Client/TextDrawingArea.class new file mode 100644 index 00000000..8de3571e Binary files /dev/null and b/production/2006Redone Client/TextDrawingArea.class differ diff --git a/production/2006Redone Client/TextInput.class b/production/2006Redone Client/TextInput.class new file mode 100644 index 00000000..58f99765 Binary files /dev/null and b/production/2006Redone Client/TextInput.class differ diff --git a/production/2006Redone Client/Texture.class b/production/2006Redone Client/Texture.class new file mode 100644 index 00000000..679ed7a3 Binary files /dev/null and b/production/2006Redone Client/Texture.class differ diff --git a/production/2006Redone Client/VarBit.class b/production/2006Redone Client/VarBit.class new file mode 100644 index 00000000..60d45488 Binary files /dev/null and b/production/2006Redone Client/VarBit.class differ diff --git a/production/2006Redone Client/Varp.class b/production/2006Redone Client/Varp.class new file mode 100644 index 00000000..5b98c9ad Binary files /dev/null and b/production/2006Redone Client/Varp.class differ diff --git a/production/2006Redone Client/WorldController.class b/production/2006Redone Client/WorldController.class new file mode 100644 index 00000000..9f7b7fc0 Binary files /dev/null and b/production/2006Redone Client/WorldController.class differ diff --git a/production/2006Redone Server/redone/Connection.class b/production/2006Redone Server/redone/Connection.class new file mode 100644 index 00000000..90418215 Binary files /dev/null and b/production/2006Redone Server/redone/Connection.class differ diff --git a/production/2006Redone Server/redone/Constants.class b/production/2006Redone Server/redone/Constants.class new file mode 100644 index 00000000..e766a6b6 Binary files /dev/null and b/production/2006Redone Server/redone/Constants.class differ diff --git a/production/2006Redone Server/redone/Server.class b/production/2006Redone Server/redone/Server.class new file mode 100644 index 00000000..66dc5d84 Binary files /dev/null and b/production/2006Redone Server/redone/Server.class differ diff --git a/production/2006Redone Server/redone/event/CycleEvent.class b/production/2006Redone Server/redone/event/CycleEvent.class new file mode 100644 index 00000000..46cf7016 Binary files /dev/null and b/production/2006Redone Server/redone/event/CycleEvent.class differ diff --git a/production/2006Redone Server/redone/event/CycleEventContainer.class b/production/2006Redone Server/redone/event/CycleEventContainer.class new file mode 100644 index 00000000..920bd351 Binary files /dev/null and b/production/2006Redone Server/redone/event/CycleEventContainer.class differ diff --git a/production/2006Redone Server/redone/event/CycleEventHandler.class b/production/2006Redone Server/redone/event/CycleEventHandler.class new file mode 100644 index 00000000..dceb7ac3 Binary files /dev/null and b/production/2006Redone Server/redone/event/CycleEventHandler.class differ diff --git a/production/2006Redone Server/redone/event/Task.class b/production/2006Redone Server/redone/event/Task.class new file mode 100644 index 00000000..22d3cded Binary files /dev/null and b/production/2006Redone Server/redone/event/Task.class differ diff --git a/production/2006Redone Server/redone/event/TaskScheduler$1.class b/production/2006Redone Server/redone/event/TaskScheduler$1.class new file mode 100644 index 00000000..31b3b8d4 Binary files /dev/null and b/production/2006Redone Server/redone/event/TaskScheduler$1.class differ diff --git a/production/2006Redone Server/redone/event/TaskScheduler.class b/production/2006Redone Server/redone/event/TaskScheduler.class new file mode 100644 index 00000000..18c4e996 Binary files /dev/null and b/production/2006Redone Server/redone/event/TaskScheduler.class differ diff --git a/production/2006Redone Server/redone/game/content/BankPin.class b/production/2006Redone Server/redone/game/content/BankPin.class new file mode 100644 index 00000000..64b86298 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/BankPin.class differ diff --git a/production/2006Redone Server/redone/game/content/EmoteHandler$Emotes.class b/production/2006Redone Server/redone/game/content/EmoteHandler$Emotes.class new file mode 100644 index 00000000..e19182cf Binary files /dev/null and b/production/2006Redone Server/redone/game/content/EmoteHandler$Emotes.class differ diff --git a/production/2006Redone Server/redone/game/content/EmoteHandler.class b/production/2006Redone Server/redone/game/content/EmoteHandler.class new file mode 100644 index 00000000..060d6ca9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/EmoteHandler.class differ diff --git a/production/2006Redone Server/redone/game/content/MemberShipHandler$1.class b/production/2006Redone Server/redone/game/content/MemberShipHandler$1.class new file mode 100644 index 00000000..44adb3f8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/MemberShipHandler$1.class differ diff --git a/production/2006Redone Server/redone/game/content/MemberShipHandler.class b/production/2006Redone Server/redone/game/content/MemberShipHandler.class new file mode 100644 index 00000000..a128781a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/MemberShipHandler.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/CombatAssistant.class b/production/2006Redone Server/redone/game/content/combat/CombatAssistant.class new file mode 100644 index 00000000..795068b1 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/CombatAssistant.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/Specials$specialAttack.class b/production/2006Redone Server/redone/game/content/combat/Specials$specialAttack.class new file mode 100644 index 00000000..75e87c0f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/Specials$specialAttack.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/Specials.class b/production/2006Redone Server/redone/game/content/combat/Specials.class new file mode 100644 index 00000000..6fa8e7b3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/Specials.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/CastOnOther$1.class b/production/2006Redone Server/redone/game/content/combat/magic/CastOnOther$1.class new file mode 100644 index 00000000..473d7013 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/CastOnOther$1.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/CastOnOther.class b/production/2006Redone Server/redone/game/content/combat/magic/CastOnOther.class new file mode 100644 index 00000000..a2b7ff07 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/CastOnOther.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/CastRequirements.class b/production/2006Redone Server/redone/game/content/combat/magic/CastRequirements.class new file mode 100644 index 00000000..84737f8a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/CastRequirements.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/Enchanting$Enchant.class b/production/2006Redone Server/redone/game/content/combat/magic/Enchanting$Enchant.class new file mode 100644 index 00000000..6648cd8a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/Enchanting$Enchant.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/Enchanting$EnchantSpell.class b/production/2006Redone Server/redone/game/content/combat/magic/Enchanting$EnchantSpell.class new file mode 100644 index 00000000..935c4615 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/Enchanting$EnchantSpell.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/Enchanting.class b/production/2006Redone Server/redone/game/content/combat/magic/Enchanting.class new file mode 100644 index 00000000..0a1fedd3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/Enchanting.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/MagicData.class b/production/2006Redone Server/redone/game/content/combat/magic/MagicData.class new file mode 100644 index 00000000..aa3f8db9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/MagicData.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/MagicMaxHit.class b/production/2006Redone Server/redone/game/content/combat/magic/MagicMaxHit.class new file mode 100644 index 00000000..267bba9d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/MagicMaxHit.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/MagicRequirements.class b/production/2006Redone Server/redone/game/content/combat/magic/MagicRequirements.class new file mode 100644 index 00000000..aa9695e3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/MagicRequirements.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/MagicSpells.class b/production/2006Redone Server/redone/game/content/combat/magic/MagicSpells.class new file mode 100644 index 00000000..e879e580 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/MagicSpells.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/MagicTeleports.class b/production/2006Redone Server/redone/game/content/combat/magic/MagicTeleports.class new file mode 100644 index 00000000..e77331d4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/MagicTeleports.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/magic/NonCombatSpells.class b/production/2006Redone Server/redone/game/content/combat/magic/NonCombatSpells.class new file mode 100644 index 00000000..8056fca1 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/magic/NonCombatSpells.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/melee/MeleeData.class b/production/2006Redone Server/redone/game/content/combat/melee/MeleeData.class new file mode 100644 index 00000000..514aa541 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/melee/MeleeData.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/melee/MeleeMaxHit.class b/production/2006Redone Server/redone/game/content/combat/melee/MeleeMaxHit.class new file mode 100644 index 00000000..edb8010c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/melee/MeleeMaxHit.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/melee/PlayerKilling.class b/production/2006Redone Server/redone/game/content/combat/melee/PlayerKilling.class new file mode 100644 index 00000000..2d8cc407 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/melee/PlayerKilling.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/npcs/NpcAggressive.class b/production/2006Redone Server/redone/game/content/combat/npcs/NpcAggressive.class new file mode 100644 index 00000000..ae6340e6 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/npcs/NpcAggressive.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/npcs/NpcCombat.class b/production/2006Redone Server/redone/game/content/combat/npcs/NpcCombat.class new file mode 100644 index 00000000..db10567e Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/npcs/NpcCombat.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/npcs/NpcEmotes.class b/production/2006Redone Server/redone/game/content/combat/npcs/NpcEmotes.class new file mode 100644 index 00000000..064e1f90 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/npcs/NpcEmotes.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/prayer/ActivatePrayers.class b/production/2006Redone Server/redone/game/content/combat/prayer/ActivatePrayers.class new file mode 100644 index 00000000..db132d4f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/prayer/ActivatePrayers.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/prayer/PrayerData.class b/production/2006Redone Server/redone/game/content/combat/prayer/PrayerData.class new file mode 100644 index 00000000..763656f9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/prayer/PrayerData.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/prayer/PrayerDrain.class b/production/2006Redone Server/redone/game/content/combat/prayer/PrayerDrain.class new file mode 100644 index 00000000..2e8da7ee Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/prayer/PrayerDrain.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon$1.class b/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon$1.class new file mode 100644 index 00000000..bcd2e851 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon$1.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon$2.class b/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon$2.class new file mode 100644 index 00000000..450cb17b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon$2.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon.class b/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon.class new file mode 100644 index 00000000..f6e6f78d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/range/DwarfCannon.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/range/RangeData.class b/production/2006Redone Server/redone/game/content/combat/range/RangeData.class new file mode 100644 index 00000000..50ec81e3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/range/RangeData.class differ diff --git a/production/2006Redone Server/redone/game/content/combat/range/RangeMaxHit.class b/production/2006Redone Server/redone/game/content/combat/range/RangeMaxHit.class new file mode 100644 index 00000000..3e6847e2 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/combat/range/RangeMaxHit.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Beverages$1.class b/production/2006Redone Server/redone/game/content/consumables/Beverages$1.class new file mode 100644 index 00000000..85b10616 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Beverages$1.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Beverages$beverageData.class b/production/2006Redone Server/redone/game/content/consumables/Beverages$beverageData.class new file mode 100644 index 00000000..3077d65a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Beverages$beverageData.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Beverages.class b/production/2006Redone Server/redone/game/content/consumables/Beverages.class new file mode 100644 index 00000000..3b203a6a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Beverages.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Food$FoodToEat.class b/production/2006Redone Server/redone/game/content/consumables/Food$FoodToEat.class new file mode 100644 index 00000000..c1cbb9d3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Food$FoodToEat.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Food.class b/production/2006Redone Server/redone/game/content/consumables/Food.class new file mode 100644 index 00000000..d5ca22c6 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Food.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Kebabs.class b/production/2006Redone Server/redone/game/content/consumables/Kebabs.class new file mode 100644 index 00000000..e25fb0a5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Kebabs.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Potions$1.class b/production/2006Redone Server/redone/game/content/consumables/Potions$1.class new file mode 100644 index 00000000..d4ad20a9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Potions$1.class differ diff --git a/production/2006Redone Server/redone/game/content/consumables/Potions.class b/production/2006Redone Server/redone/game/content/consumables/Potions.class new file mode 100644 index 00000000..7f90b8bd Binary files /dev/null and b/production/2006Redone Server/redone/game/content/consumables/Potions.class differ diff --git a/production/2006Redone Server/redone/game/content/guilds/Guilds.class b/production/2006Redone Server/redone/game/content/guilds/Guilds.class new file mode 100644 index 00000000..46ed6edc Binary files /dev/null and b/production/2006Redone Server/redone/game/content/guilds/Guilds.class differ diff --git a/production/2006Redone Server/redone/game/content/guilds/impl/RangersGuild$1.class b/production/2006Redone Server/redone/game/content/guilds/impl/RangersGuild$1.class new file mode 100644 index 00000000..098c8d9d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/guilds/impl/RangersGuild$1.class differ diff --git a/production/2006Redone Server/redone/game/content/guilds/impl/RangersGuild.class b/production/2006Redone Server/redone/game/content/guilds/impl/RangersGuild.class new file mode 100644 index 00000000..e8345fd4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/guilds/impl/RangersGuild.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/Barrows.class b/production/2006Redone Server/redone/game/content/minigames/Barrows.class new file mode 100644 index 00000000..b5988204 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/Barrows.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/Dueling.class b/production/2006Redone Server/redone/game/content/minigames/Dueling.class new file mode 100644 index 00000000..9b1c98b2 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/Dueling.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/FightCaves$1.class b/production/2006Redone Server/redone/game/content/minigames/FightCaves$1.class new file mode 100644 index 00000000..ab155b8a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/FightCaves$1.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/FightCaves.class b/production/2006Redone Server/redone/game/content/minigames/FightCaves.class new file mode 100644 index 00000000..5fdc8844 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/FightCaves.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/FightPits.class b/production/2006Redone Server/redone/game/content/minigames/FightPits.class new file mode 100644 index 00000000..e1050bc3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/FightPits.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/MageArena.class b/production/2006Redone Server/redone/game/content/minigames/MageArena.class new file mode 100644 index 00000000..7a714238 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/MageArena.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/PestControl.class b/production/2006Redone Server/redone/game/content/minigames/PestControl.class new file mode 100644 index 00000000..019e17c4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/PestControl.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/TreasureTrails.class b/production/2006Redone Server/redone/game/content/minigames/TreasureTrails.class new file mode 100644 index 00000000..5bc3cda4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/TreasureTrails.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/castlewars/CastleWarObjects.class b/production/2006Redone Server/redone/game/content/minigames/castlewars/CastleWarObjects.class new file mode 100644 index 00000000..554f3c88 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/castlewars/CastleWarObjects.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/castlewars/CastleWars.class b/production/2006Redone Server/redone/game/content/minigames/castlewars/CastleWars.class new file mode 100644 index 00000000..cc6a6b26 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/castlewars/CastleWars.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/GroupMinigame.class b/production/2006Redone Server/redone/game/content/minigames/trawler/GroupMinigame.class new file mode 100644 index 00000000..d9eb9104 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/GroupMinigame.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$1.class b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$1.class new file mode 100644 index 00000000..c35999da Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$1.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$2.class b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$2.class new file mode 100644 index 00000000..07a06940 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$2.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$3.class b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$3.class new file mode 100644 index 00000000..db220301 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$3.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$4.class b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$4.class new file mode 100644 index 00000000..9ad3e1b5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$4.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$Wall.class b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$Wall.class new file mode 100644 index 00000000..46997dfb Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler$Wall.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler.class b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler.class new file mode 100644 index 00000000..9de746e5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/Trawler.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/TrawlerWaitingRoom.class b/production/2006Redone Server/redone/game/content/minigames/trawler/TrawlerWaitingRoom.class new file mode 100644 index 00000000..b0e908fc Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/TrawlerWaitingRoom.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/WaitingRoom$1.class b/production/2006Redone Server/redone/game/content/minigames/trawler/WaitingRoom$1.class new file mode 100644 index 00000000..f8c4fa0f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/WaitingRoom$1.class differ diff --git a/production/2006Redone Server/redone/game/content/minigames/trawler/WaitingRoom.class b/production/2006Redone Server/redone/game/content/minigames/trawler/WaitingRoom.class new file mode 100644 index 00000000..f0076df3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/minigames/trawler/WaitingRoom.class differ diff --git a/production/2006Redone Server/redone/game/content/music/Music.class b/production/2006Redone Server/redone/game/content/music/Music.class new file mode 100644 index 00000000..20608d57 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/music/Music.class differ diff --git a/production/2006Redone Server/redone/game/content/music/PlayList$Songs.class b/production/2006Redone Server/redone/game/content/music/PlayList$Songs.class new file mode 100644 index 00000000..06132e15 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/music/PlayList$Songs.class differ diff --git a/production/2006Redone Server/redone/game/content/music/PlayList.class b/production/2006Redone Server/redone/game/content/music/PlayList.class new file mode 100644 index 00000000..5c957f94 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/music/PlayList.class differ diff --git a/production/2006Redone Server/redone/game/content/music/sound/CombatSounds.class b/production/2006Redone Server/redone/game/content/music/sound/CombatSounds.class new file mode 100644 index 00000000..940135a0 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/music/sound/CombatSounds.class differ diff --git a/production/2006Redone Server/redone/game/content/music/sound/SoundList.class b/production/2006Redone Server/redone/game/content/music/sound/SoundList.class new file mode 100644 index 00000000..31135021 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/music/sound/SoundList.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/QuestAssistant$Quests.class b/production/2006Redone Server/redone/game/content/quests/QuestAssistant$Quests.class new file mode 100644 index 00000000..b0970bbd Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/QuestAssistant$Quests.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/QuestAssistant.class b/production/2006Redone Server/redone/game/content/quests/QuestAssistant.class new file mode 100644 index 00000000..271ccf3f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/QuestAssistant.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/QuestRewards.class b/production/2006Redone Server/redone/game/content/quests/QuestRewards.class new file mode 100644 index 00000000..6fb7dda5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/QuestRewards.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/CooksAssistant.class b/production/2006Redone Server/redone/game/content/quests/impl/CooksAssistant.class new file mode 100644 index 00000000..4d18642b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/CooksAssistant.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/DoricsQuest.class b/production/2006Redone Server/redone/game/content/quests/impl/DoricsQuest.class new file mode 100644 index 00000000..1f75705e Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/DoricsQuest.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/GertrudesCat.class b/production/2006Redone Server/redone/game/content/quests/impl/GertrudesCat.class new file mode 100644 index 00000000..e19df6b9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/GertrudesCat.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/ImpCatcher.class b/production/2006Redone Server/redone/game/content/quests/impl/ImpCatcher.class new file mode 100644 index 00000000..cf1a952a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/ImpCatcher.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/KnightsSword.class b/production/2006Redone Server/redone/game/content/quests/impl/KnightsSword.class new file mode 100644 index 00000000..7e5d81ca Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/KnightsSword.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/PiratesTreasure.class b/production/2006Redone Server/redone/game/content/quests/impl/PiratesTreasure.class new file mode 100644 index 00000000..28c9139b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/PiratesTreasure.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/RestlessGhost.class b/production/2006Redone Server/redone/game/content/quests/impl/RestlessGhost.class new file mode 100644 index 00000000..f8e8cf41 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/RestlessGhost.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/RomeoJuliet.class b/production/2006Redone Server/redone/game/content/quests/impl/RomeoJuliet.class new file mode 100644 index 00000000..9c35e4d4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/RomeoJuliet.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/RuneMysteries.class b/production/2006Redone Server/redone/game/content/quests/impl/RuneMysteries.class new file mode 100644 index 00000000..66b566c9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/RuneMysteries.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/SheepShearer.class b/production/2006Redone Server/redone/game/content/quests/impl/SheepShearer.class new file mode 100644 index 00000000..e7347f32 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/SheepShearer.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/VampyreSlayer.class b/production/2006Redone Server/redone/game/content/quests/impl/VampyreSlayer.class new file mode 100644 index 00000000..fcefcb9b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/VampyreSlayer.class differ diff --git a/production/2006Redone Server/redone/game/content/quests/impl/WitchsPotion.class b/production/2006Redone Server/redone/game/content/quests/impl/WitchsPotion.class new file mode 100644 index 00000000..5de398f1 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/quests/impl/WitchsPotion.class differ diff --git a/production/2006Redone Server/redone/game/content/random/Balloons.class b/production/2006Redone Server/redone/game/content/random/Balloons.class new file mode 100644 index 00000000..0c0bb145 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/random/Balloons.class differ diff --git a/production/2006Redone Server/redone/game/content/random/HolidayDrops.class b/production/2006Redone Server/redone/game/content/random/HolidayDrops.class new file mode 100644 index 00000000..e87a4bdb Binary files /dev/null and b/production/2006Redone Server/redone/game/content/random/HolidayDrops.class differ diff --git a/production/2006Redone Server/redone/game/content/random/Holidays$1.class b/production/2006Redone Server/redone/game/content/random/Holidays$1.class new file mode 100644 index 00000000..acf03b4a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/random/Holidays$1.class differ diff --git a/production/2006Redone Server/redone/game/content/random/Holidays.class b/production/2006Redone Server/redone/game/content/random/Holidays.class new file mode 100644 index 00000000..d1e48b88 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/random/Holidays.class differ diff --git a/production/2006Redone Server/redone/game/content/random/PartyRoom.class b/production/2006Redone Server/redone/game/content/random/PartyRoom.class new file mode 100644 index 00000000..c91567bf Binary files /dev/null and b/production/2006Redone Server/redone/game/content/random/PartyRoom.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/EvilChicken.class b/production/2006Redone Server/redone/game/content/randomevents/EvilChicken.class new file mode 100644 index 00000000..a1961ace Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/EvilChicken.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/FreakyForester.class b/production/2006Redone Server/redone/game/content/randomevents/FreakyForester.class new file mode 100644 index 00000000..4c1ea8a4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/FreakyForester.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/Frog.class b/production/2006Redone Server/redone/game/content/randomevents/Frog.class new file mode 100644 index 00000000..ec46b43f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/Frog.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/GenieLamp.class b/production/2006Redone Server/redone/game/content/randomevents/GenieLamp.class new file mode 100644 index 00000000..fa1ceb3f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/GenieLamp.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/RandomEventHandler.class b/production/2006Redone Server/redone/game/content/randomevents/RandomEventHandler.class new file mode 100644 index 00000000..0f79db0e Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/RandomEventHandler.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/RiverTroll.class b/production/2006Redone Server/redone/game/content/randomevents/RiverTroll.class new file mode 100644 index 00000000..9259dc07 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/RiverTroll.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/RockGolem.class b/production/2006Redone Server/redone/game/content/randomevents/RockGolem.class new file mode 100644 index 00000000..a284fb08 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/RockGolem.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/SandwhichLady.class b/production/2006Redone Server/redone/game/content/randomevents/SandwhichLady.class new file mode 100644 index 00000000..88f976ab Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/SandwhichLady.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/Shade.class b/production/2006Redone Server/redone/game/content/randomevents/Shade.class new file mode 100644 index 00000000..b4feceab Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/Shade.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/Swarm.class b/production/2006Redone Server/redone/game/content/randomevents/Swarm.class new file mode 100644 index 00000000..625fc4c7 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/Swarm.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/TreeSpirit.class b/production/2006Redone Server/redone/game/content/randomevents/TreeSpirit.class new file mode 100644 index 00000000..2749eb4f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/TreeSpirit.class differ diff --git a/production/2006Redone Server/redone/game/content/randomevents/Zombie.class b/production/2006Redone Server/redone/game/content/randomevents/Zombie.class new file mode 100644 index 00000000..de29fc34 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/randomevents/Zombie.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/Menus.class b/production/2006Redone Server/redone/game/content/skills/Menus.class new file mode 100644 index 00000000..d3f12231 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/Menus.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/SkillHandler.class b/production/2006Redone Server/redone/game/content/skills/SkillHandler.class new file mode 100644 index 00000000..19a9e668 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/SkillHandler.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/SkillInterfaces.class b/production/2006Redone Server/redone/game/content/skills/SkillInterfaces.class new file mode 100644 index 00000000..ba915851 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/SkillInterfaces.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/SkillMenu.class b/production/2006Redone Server/redone/game/content/skills/SkillMenu.class new file mode 100644 index 00000000..8d1f4bc8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/SkillMenu.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$1.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$1.class new file mode 100644 index 00000000..d6c133d4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$2.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$2.class new file mode 100644 index 00000000..59070f8b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$3.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$3.class new file mode 100644 index 00000000..3eadfc74 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$3.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$4.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$4.class new file mode 100644 index 00000000..173132f7 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$4.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$5.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$5.class new file mode 100644 index 00000000..3db9019d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$5.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$6.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$6.class new file mode 100644 index 00000000..c107258d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$6.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$7.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$7.class new file mode 100644 index 00000000..890af093 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$7.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$8.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$8.class new file mode 100644 index 00000000..4473759b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$8.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility$9.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility$9.class new file mode 100644 index 00000000..ee4a2127 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility$9.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/Agility.class b/production/2006Redone Server/redone/game/content/skills/agility/Agility.class new file mode 100644 index 00000000..da2d7f82 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/Agility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/AgilityShortcut.class b/production/2006Redone Server/redone/game/content/skills/agility/AgilityShortcut.class new file mode 100644 index 00000000..8087af6a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/AgilityShortcut.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/ApeAtollAgility$1.class b/production/2006Redone Server/redone/game/content/skills/agility/ApeAtollAgility$1.class new file mode 100644 index 00000000..7e3489b8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/ApeAtollAgility$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/ApeAtollAgility.class b/production/2006Redone Server/redone/game/content/skills/agility/ApeAtollAgility.class new file mode 100644 index 00000000..614ae450 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/ApeAtollAgility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/BarbarianAgility$1.class b/production/2006Redone Server/redone/game/content/skills/agility/BarbarianAgility$1.class new file mode 100644 index 00000000..b52bcbb5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/BarbarianAgility$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/BarbarianAgility.class b/production/2006Redone Server/redone/game/content/skills/agility/BarbarianAgility.class new file mode 100644 index 00000000..f64ed52c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/BarbarianAgility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/GnomeAgility.class b/production/2006Redone Server/redone/game/content/skills/agility/GnomeAgility.class new file mode 100644 index 00000000..5413f4d5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/GnomeAgility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$1.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$1.class new file mode 100644 index 00000000..5ae2b04a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$10.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$10.class new file mode 100644 index 00000000..70e107b7 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$10.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$2.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$2.class new file mode 100644 index 00000000..faf291b5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$3.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$3.class new file mode 100644 index 00000000..5eaf80ac Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$3.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$4.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$4.class new file mode 100644 index 00000000..8900149b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$4.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$5.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$5.class new file mode 100644 index 00000000..5c65c055 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$5.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$6.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$6.class new file mode 100644 index 00000000..7c732a48 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$6.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$7.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$7.class new file mode 100644 index 00000000..2933ecf5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$7.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$8.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$8.class new file mode 100644 index 00000000..97071e73 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$8.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$9.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$9.class new file mode 100644 index 00000000..679727ab Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility$9.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility.class b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility.class new file mode 100644 index 00000000..89c8a24a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/PyramidAgility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/WerewolfAgility$1.class b/production/2006Redone Server/redone/game/content/skills/agility/WerewolfAgility$1.class new file mode 100644 index 00000000..ede7ec0a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/WerewolfAgility$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/WerewolfAgility.class b/production/2006Redone Server/redone/game/content/skills/agility/WerewolfAgility.class new file mode 100644 index 00000000..8928ec93 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/WerewolfAgility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/WildernessAgility$1.class b/production/2006Redone Server/redone/game/content/skills/agility/WildernessAgility$1.class new file mode 100644 index 00000000..e7a6487b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/WildernessAgility$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/agility/WildernessAgility.class b/production/2006Redone Server/redone/game/content/skills/agility/WildernessAgility.class new file mode 100644 index 00000000..e8a75358 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/agility/WildernessAgility.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/Cooking$1.class b/production/2006Redone Server/redone/game/content/skills/cooking/Cooking$1.class new file mode 100644 index 00000000..02ec9988 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/Cooking$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/Cooking$CookingItems.class b/production/2006Redone Server/redone/game/content/skills/cooking/Cooking$CookingItems.class new file mode 100644 index 00000000..bdef5c72 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/Cooking$CookingItems.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/Cooking.class b/production/2006Redone Server/redone/game/content/skills/cooking/Cooking.class new file mode 100644 index 00000000..b0cb1d1d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/Cooking.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland$1.class b/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland$1.class new file mode 100644 index 00000000..5454c2e5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland$2.class b/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland$2.class new file mode 100644 index 00000000..b97531f8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland.class b/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland.class new file mode 100644 index 00000000..8b884152 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/CookingTutorialIsland.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/Potatoes$PotatoMaking.class b/production/2006Redone Server/redone/game/content/skills/cooking/Potatoes$PotatoMaking.class new file mode 100644 index 00000000..2f064dff Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/Potatoes$PotatoMaking.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/cooking/Potatoes.class b/production/2006Redone Server/redone/game/content/skills/cooking/Potatoes.class new file mode 100644 index 00000000..5d05b660 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/cooking/Potatoes.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Fishing$1.class b/production/2006Redone Server/redone/game/content/skills/core/Fishing$1.class new file mode 100644 index 00000000..ae300468 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Fishing$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Fishing$2.class b/production/2006Redone Server/redone/game/content/skills/core/Fishing$2.class new file mode 100644 index 00000000..3d4a07ca Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Fishing$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Fishing$3.class b/production/2006Redone Server/redone/game/content/skills/core/Fishing$3.class new file mode 100644 index 00000000..47549573 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Fishing$3.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Fishing$4.class b/production/2006Redone Server/redone/game/content/skills/core/Fishing$4.class new file mode 100644 index 00000000..8924ff01 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Fishing$4.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Fishing.class b/production/2006Redone Server/redone/game/content/skills/core/Fishing.class new file mode 100644 index 00000000..a4d7124f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Fishing.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining$1.class b/production/2006Redone Server/redone/game/content/skills/core/Mining$1.class new file mode 100644 index 00000000..d0c31fec Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining$2.class b/production/2006Redone Server/redone/game/content/skills/core/Mining$2.class new file mode 100644 index 00000000..38efbd54 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining$3.class b/production/2006Redone Server/redone/game/content/skills/core/Mining$3.class new file mode 100644 index 00000000..759e08b0 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining$3.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining$4.class b/production/2006Redone Server/redone/game/content/skills/core/Mining$4.class new file mode 100644 index 00000000..3b7006d8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining$4.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining$5.class b/production/2006Redone Server/redone/game/content/skills/core/Mining$5.class new file mode 100644 index 00000000..4d02c16e Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining$5.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining$rockData.class b/production/2006Redone Server/redone/game/content/skills/core/Mining$rockData.class new file mode 100644 index 00000000..64eecd6b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining$rockData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Mining.class b/production/2006Redone Server/redone/game/content/skills/core/Mining.class new file mode 100644 index 00000000..b1dc42e7 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Mining.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Prayer$1.class b/production/2006Redone Server/redone/game/content/skills/core/Prayer$1.class new file mode 100644 index 00000000..dd2b2a99 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Prayer$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Prayer.class b/production/2006Redone Server/redone/game/content/skills/core/Prayer.class new file mode 100644 index 00000000..ae68e807 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Prayer.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$1.class b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$1.class new file mode 100644 index 00000000..a6e14aa7 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$2$1.class b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$2$1.class new file mode 100644 index 00000000..46c2457a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$2$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$2.class b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$2.class new file mode 100644 index 00000000..7c9d17a8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$3.class b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$3.class new file mode 100644 index 00000000..89fd2526 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$3.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$4.class b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$4.class new file mode 100644 index 00000000..145a0d16 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting$4.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/core/Woodcutting.class b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting.class new file mode 100644 index 00000000..9c3c81a3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/core/Woodcutting.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$Leather.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$Leather.class new file mode 100644 index 00000000..cecf9048 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$Leather.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$amuletData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$amuletData.class new file mode 100644 index 00000000..23f974b0 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$amuletData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$cutGemData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$cutGemData.class new file mode 100644 index 00000000..10bb7045 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$cutGemData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$jewelryData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$jewelryData.class new file mode 100644 index 00000000..81aaa164 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$jewelryData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$leatherData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$leatherData.class new file mode 100644 index 00000000..8b43c150 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$leatherData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$leatherDialogueData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$leatherDialogueData.class new file mode 100644 index 00000000..40e63a82 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$leatherDialogueData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$tanningData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$tanningData.class new file mode 100644 index 00000000..6278a539 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData$tanningData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData.class b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData.class new file mode 100644 index 00000000..9e5a223b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/CraftingData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/GemCutting$1.class b/production/2006Redone Server/redone/game/content/skills/crafting/GemCutting$1.class new file mode 100644 index 00000000..5dbc7b53 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/GemCutting$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/GemCutting.class b/production/2006Redone Server/redone/game/content/skills/crafting/GemCutting.class new file mode 100644 index 00000000..8b9947bb Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/GemCutting.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/GlassBlowing$1.class b/production/2006Redone Server/redone/game/content/skills/crafting/GlassBlowing$1.class new file mode 100644 index 00000000..85117c59 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/GlassBlowing$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/GlassBlowing.class b/production/2006Redone Server/redone/game/content/skills/crafting/GlassBlowing.class new file mode 100644 index 00000000..44734692 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/GlassBlowing.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/JewelryMaking.class b/production/2006Redone Server/redone/game/content/skills/crafting/JewelryMaking.class new file mode 100644 index 00000000..3b326a94 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/JewelryMaking.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/LeatherMaking$1.class b/production/2006Redone Server/redone/game/content/skills/crafting/LeatherMaking$1.class new file mode 100644 index 00000000..d0030162 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/LeatherMaking$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/LeatherMaking.class b/production/2006Redone Server/redone/game/content/skills/crafting/LeatherMaking.class new file mode 100644 index 00000000..be2a505f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/LeatherMaking.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/Pottery$1.class b/production/2006Redone Server/redone/game/content/skills/crafting/Pottery$1.class new file mode 100644 index 00000000..787cd2e2 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/Pottery$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/Pottery$2.class b/production/2006Redone Server/redone/game/content/skills/crafting/Pottery$2.class new file mode 100644 index 00000000..5991175b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/Pottery$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/Pottery.class b/production/2006Redone Server/redone/game/content/skills/crafting/Pottery.class new file mode 100644 index 00000000..64f60f8c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/Pottery.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/SoftClay$1.class b/production/2006Redone Server/redone/game/content/skills/crafting/SoftClay$1.class new file mode 100644 index 00000000..ab94bf42 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/SoftClay$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/SoftClay.class b/production/2006Redone Server/redone/game/content/skills/crafting/SoftClay.class new file mode 100644 index 00000000..376d6aa1 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/SoftClay.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/Spinning$1.class b/production/2006Redone Server/redone/game/content/skills/crafting/Spinning$1.class new file mode 100644 index 00000000..e9ffb13f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/Spinning$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/Spinning.class b/production/2006Redone Server/redone/game/content/skills/crafting/Spinning.class new file mode 100644 index 00000000..6baed624 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/Spinning.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/crafting/Tanning.class b/production/2006Redone Server/redone/game/content/skills/crafting/Tanning.class new file mode 100644 index 00000000..77427bdb Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/crafting/Tanning.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/farming/Allotments.class b/production/2006Redone Server/redone/game/content/skills/farming/Allotments.class new file mode 100644 index 00000000..74198710 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/farming/Allotments.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/farming/Farming.class b/production/2006Redone Server/redone/game/content/skills/farming/Farming.class new file mode 100644 index 00000000..b656ecc1 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/farming/Farming.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/farming/FarmingConstants.class b/production/2006Redone Server/redone/game/content/skills/farming/FarmingConstants.class new file mode 100644 index 00000000..1d019ff6 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/farming/FarmingConstants.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/farming/Flowers.class b/production/2006Redone Server/redone/game/content/skills/farming/Flowers.class new file mode 100644 index 00000000..6411fa6e Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/farming/Flowers.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/farming/Herbs.class b/production/2006Redone Server/redone/game/content/skills/farming/Herbs.class new file mode 100644 index 00000000..50a89f13 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/farming/Herbs.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/farming/Patch.class b/production/2006Redone Server/redone/game/content/skills/farming/Patch.class new file mode 100644 index 00000000..4c3fd268 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/farming/Patch.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$1$1.class b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$1$1.class new file mode 100644 index 00000000..c998865d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$1$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$1.class b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$1.class new file mode 100644 index 00000000..7d36e8a6 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$2.class b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$2.class new file mode 100644 index 00000000..3ebf2243 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking.class b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking.class new file mode 100644 index 00000000..73ade57c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/firemaking/Firemaking.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/firemaking/LogData.class b/production/2006Redone Server/redone/game/content/skills/firemaking/LogData.class new file mode 100644 index 00000000..38048d15 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/firemaking/LogData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking$1.class b/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking$1.class new file mode 100644 index 00000000..332846f9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking$Data.class b/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking$Data.class new file mode 100644 index 00000000..4890983b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking$Data.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking.class b/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking.class new file mode 100644 index 00000000..d8d971b4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/ArrowMaking.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting$1.class b/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting$1.class new file mode 100644 index 00000000..58b1f128 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting$2.class b/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting$2.class new file mode 100644 index 00000000..c88b3eb4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting.class b/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting.class new file mode 100644 index 00000000..d9b68c58 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/LogCutting.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/LogCuttingInterface.class b/production/2006Redone Server/redone/game/content/skills/fletching/LogCuttingInterface.class new file mode 100644 index 00000000..1714301a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/LogCuttingInterface.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/Stringing$1.class b/production/2006Redone Server/redone/game/content/skills/fletching/Stringing$1.class new file mode 100644 index 00000000..d6baaed8 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/Stringing$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/Stringing$Data.class b/production/2006Redone Server/redone/game/content/skills/fletching/Stringing$Data.class new file mode 100644 index 00000000..44952cb2 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/Stringing$Data.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/fletching/Stringing.class b/production/2006Redone Server/redone/game/content/skills/fletching/Stringing.class new file mode 100644 index 00000000..400b82a4 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/fletching/Stringing.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/herblore/GrindingAction$Data.class b/production/2006Redone Server/redone/game/content/skills/herblore/GrindingAction$Data.class new file mode 100644 index 00000000..6391c97f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/herblore/GrindingAction$Data.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/herblore/GrindingAction.class b/production/2006Redone Server/redone/game/content/skills/herblore/GrindingAction.class new file mode 100644 index 00000000..bc75c3d1 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/herblore/GrindingAction.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/herblore/Herblore$1.class b/production/2006Redone Server/redone/game/content/skills/herblore/Herblore$1.class new file mode 100644 index 00000000..21b29e62 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/herblore/Herblore$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/herblore/Herblore$2.class b/production/2006Redone Server/redone/game/content/skills/herblore/Herblore$2.class new file mode 100644 index 00000000..87049dd3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/herblore/Herblore$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/herblore/Herblore.class b/production/2006Redone Server/redone/game/content/skills/herblore/Herblore.class new file mode 100644 index 00000000..df5933d2 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/herblore/Herblore.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/runecrafting/AbyssalHandler.class b/production/2006Redone Server/redone/game/content/skills/runecrafting/AbyssalHandler.class new file mode 100644 index 00000000..53540a56 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/runecrafting/AbyssalHandler.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/runecrafting/RuneCraftingActions.class b/production/2006Redone Server/redone/game/content/skills/runecrafting/RuneCraftingActions.class new file mode 100644 index 00000000..9137bf81 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/runecrafting/RuneCraftingActions.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting$Altar_Data.class b/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting$Altar_Data.class new file mode 100644 index 00000000..9c9c2079 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting$Altar_Data.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting$Altars.class b/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting$Altars.class new file mode 100644 index 00000000..443563d5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting$Altars.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting.class b/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting.class new file mode 100644 index 00000000..d6a6a839 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/runecrafting/Runecrafting.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/slayer/Slayer$SlayerMasters.class b/production/2006Redone Server/redone/game/content/skills/slayer/Slayer$SlayerMasters.class new file mode 100644 index 00000000..368a10bc Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/slayer/Slayer$SlayerMasters.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/slayer/Slayer$Task.class b/production/2006Redone Server/redone/game/content/skills/slayer/Slayer$Task.class new file mode 100644 index 00000000..d34284d5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/slayer/Slayer$Task.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/slayer/Slayer.class b/production/2006Redone Server/redone/game/content/skills/slayer/Slayer.class new file mode 100644 index 00000000..0c5ca121 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/slayer/Slayer.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/slayer/SlayerRequirements.class b/production/2006Redone Server/redone/game/content/skills/slayer/SlayerRequirements.class new file mode 100644 index 00000000..c3da3444 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/slayer/SlayerRequirements.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting$1.class b/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting$1.class new file mode 100644 index 00000000..1d4ec820 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting$SilverCraft.class b/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting$SilverCraft.class new file mode 100644 index 00000000..2e93494a Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting$SilverCraft.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting.class b/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting.class new file mode 100644 index 00000000..c12ae8af Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/SilverCrafting.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/Smelting$1.class b/production/2006Redone Server/redone/game/content/skills/smithing/Smelting$1.class new file mode 100644 index 00000000..808dfd21 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/Smelting$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/Smelting$2.class b/production/2006Redone Server/redone/game/content/skills/smithing/Smelting$2.class new file mode 100644 index 00000000..214dfb49 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/Smelting$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/Smelting.class b/production/2006Redone Server/redone/game/content/skills/smithing/Smelting.class new file mode 100644 index 00000000..3db3300c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/Smelting.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/Smithing.class b/production/2006Redone Server/redone/game/content/skills/smithing/Smithing.class new file mode 100644 index 00000000..0b52eb28 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/Smithing.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/SmithingInterface.class b/production/2006Redone Server/redone/game/content/skills/smithing/SmithingInterface.class new file mode 100644 index 00000000..4b8cdcd9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/SmithingInterface.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/smithing/Superheat.class b/production/2006Redone Server/redone/game/content/skills/smithing/Superheat.class new file mode 100644 index 00000000..46996bff Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/smithing/Superheat.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$1.class b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$1.class new file mode 100644 index 00000000..d4d5f656 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$2.class b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$2.class new file mode 100644 index 00000000..648c3c4b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$2.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$3.class b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$3.class new file mode 100644 index 00000000..fbebbdc5 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$3.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$npcData.class b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$npcData.class new file mode 100644 index 00000000..d40dd14e Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket$npcData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket.class b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket.class new file mode 100644 index 00000000..69334247 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Pickpocket.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Stalls$1.class b/production/2006Redone Server/redone/game/content/skills/thieving/Stalls$1.class new file mode 100644 index 00000000..11310e89 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Stalls$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Stalls$stallData.class b/production/2006Redone Server/redone/game/content/skills/thieving/Stalls$stallData.class new file mode 100644 index 00000000..875fe71c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Stalls$stallData.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/Stalls.class b/production/2006Redone Server/redone/game/content/skills/thieving/Stalls.class new file mode 100644 index 00000000..b9f551b3 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/Stalls.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/ThieveOther$1.class b/production/2006Redone Server/redone/game/content/skills/thieving/ThieveOther$1.class new file mode 100644 index 00000000..73300373 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/ThieveOther$1.class differ diff --git a/production/2006Redone Server/redone/game/content/skills/thieving/ThieveOther.class b/production/2006Redone Server/redone/game/content/skills/thieving/ThieveOther.class new file mode 100644 index 00000000..ac71a4cf Binary files /dev/null and b/production/2006Redone Server/redone/game/content/skills/thieving/ThieveOther.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/Desert$1.class b/production/2006Redone Server/redone/game/content/traveling/Desert$1.class new file mode 100644 index 00000000..92e54ece Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/Desert$1.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/Desert.class b/production/2006Redone Server/redone/game/content/traveling/Desert.class new file mode 100644 index 00000000..28096b3d Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/Desert.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/GnomeGlider$1.class b/production/2006Redone Server/redone/game/content/traveling/GnomeGlider$1.class new file mode 100644 index 00000000..8d2bb087 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/GnomeGlider$1.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/GnomeGlider$2.class b/production/2006Redone Server/redone/game/content/traveling/GnomeGlider$2.class new file mode 100644 index 00000000..b440c16f Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/GnomeGlider$2.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/GnomeGlider.class b/production/2006Redone Server/redone/game/content/traveling/GnomeGlider.class new file mode 100644 index 00000000..044e88c9 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/GnomeGlider.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/Sailing$1.class b/production/2006Redone Server/redone/game/content/traveling/Sailing$1.class new file mode 100644 index 00000000..6c42149c Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/Sailing$1.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/Sailing$2.class b/production/2006Redone Server/redone/game/content/traveling/Sailing$2.class new file mode 100644 index 00000000..9e5d28f7 Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/Sailing$2.class differ diff --git a/production/2006Redone Server/redone/game/content/traveling/Sailing.class b/production/2006Redone Server/redone/game/content/traveling/Sailing.class new file mode 100644 index 00000000..5ff1576b Binary files /dev/null and b/production/2006Redone Server/redone/game/content/traveling/Sailing.class differ diff --git a/production/2006Redone Server/redone/game/dialogues/Dialogue.class b/production/2006Redone Server/redone/game/dialogues/Dialogue.class new file mode 100644 index 00000000..07c7aa6a Binary files /dev/null and b/production/2006Redone Server/redone/game/dialogues/Dialogue.class differ diff --git a/production/2006Redone Server/redone/game/dialogues/DialogueHandler.class b/production/2006Redone Server/redone/game/dialogues/DialogueHandler.class new file mode 100644 index 00000000..1668e4b3 Binary files /dev/null and b/production/2006Redone Server/redone/game/dialogues/DialogueHandler.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/ClimbOther$ClimbData.class b/production/2006Redone Server/redone/game/globalworldobjects/ClimbOther$ClimbData.class new file mode 100644 index 00000000..ac60437f Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/ClimbOther$ClimbData.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/ClimbOther.class b/production/2006Redone Server/redone/game/globalworldobjects/ClimbOther.class new file mode 100644 index 00000000..8a58cdc6 Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/ClimbOther.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/Doors.class b/production/2006Redone Server/redone/game/globalworldobjects/Doors.class new file mode 100644 index 00000000..79b74737 Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/Doors.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/DoubleDoors.class b/production/2006Redone Server/redone/game/globalworldobjects/DoubleDoors.class new file mode 100644 index 00000000..64fc76c1 Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/DoubleDoors.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/DoubleGates.class b/production/2006Redone Server/redone/game/globalworldobjects/DoubleGates.class new file mode 100644 index 00000000..a8596af3 Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/DoubleGates.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/GateHandler.class b/production/2006Redone Server/redone/game/globalworldobjects/GateHandler.class new file mode 100644 index 00000000..e996fc47 Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/GateHandler.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/PassDoor$1.class b/production/2006Redone Server/redone/game/globalworldobjects/PassDoor$1.class new file mode 100644 index 00000000..9dd6f3cc Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/PassDoor$1.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/PassDoor.class b/production/2006Redone Server/redone/game/globalworldobjects/PassDoor.class new file mode 100644 index 00000000..1ae8d42b Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/PassDoor.class differ diff --git a/production/2006Redone Server/redone/game/globalworldobjects/SingleGates.class b/production/2006Redone Server/redone/game/globalworldobjects/SingleGates.class new file mode 100644 index 00000000..04f16def Binary files /dev/null and b/production/2006Redone Server/redone/game/globalworldobjects/SingleGates.class differ diff --git a/production/2006Redone Server/redone/game/items/GameItem.class b/production/2006Redone Server/redone/game/items/GameItem.class new file mode 100644 index 00000000..b7cfae2b Binary files /dev/null and b/production/2006Redone Server/redone/game/items/GameItem.class differ diff --git a/production/2006Redone Server/redone/game/items/GroundItem.class b/production/2006Redone Server/redone/game/items/GroundItem.class new file mode 100644 index 00000000..dd91eadd Binary files /dev/null and b/production/2006Redone Server/redone/game/items/GroundItem.class differ diff --git a/production/2006Redone Server/redone/game/items/Item.class b/production/2006Redone Server/redone/game/items/Item.class new file mode 100644 index 00000000..18f3106b Binary files /dev/null and b/production/2006Redone Server/redone/game/items/Item.class differ diff --git a/production/2006Redone Server/redone/game/items/ItemAssistant.class b/production/2006Redone Server/redone/game/items/ItemAssistant.class new file mode 100644 index 00000000..251b98c3 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/ItemAssistant.class differ diff --git a/production/2006Redone Server/redone/game/items/ItemDefinitions.class b/production/2006Redone Server/redone/game/items/ItemDefinitions.class new file mode 100644 index 00000000..1964e39f Binary files /dev/null and b/production/2006Redone Server/redone/game/items/ItemDefinitions.class differ diff --git a/production/2006Redone Server/redone/game/items/ItemList.class b/production/2006Redone Server/redone/game/items/ItemList.class new file mode 100644 index 00000000..db610ea6 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/ItemList.class differ diff --git a/production/2006Redone Server/redone/game/items/UseItem.class b/production/2006Redone Server/redone/game/items/UseItem.class new file mode 100644 index 00000000..b2e43b87 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/UseItem.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/CapeDye.class b/production/2006Redone Server/redone/game/items/impl/CapeDye.class new file mode 100644 index 00000000..23380171 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/CapeDye.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/ExperienceLamp.class b/production/2006Redone Server/redone/game/items/impl/ExperienceLamp.class new file mode 100644 index 00000000..519295cf Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/ExperienceLamp.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Fillables.class b/production/2006Redone Server/redone/game/items/impl/Fillables.class new file mode 100644 index 00000000..27fd36cc Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Fillables.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Flowers$1.class b/production/2006Redone Server/redone/game/items/impl/Flowers$1.class new file mode 100644 index 00000000..dfc64e65 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Flowers$1.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Flowers$2.class b/production/2006Redone Server/redone/game/items/impl/Flowers$2.class new file mode 100644 index 00000000..e60e7865 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Flowers$2.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Flowers.class b/production/2006Redone Server/redone/game/items/impl/Flowers.class new file mode 100644 index 00000000..5f153bcd Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Flowers.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/HandleEmpty.class b/production/2006Redone Server/redone/game/items/impl/HandleEmpty.class new file mode 100644 index 00000000..4179144d Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/HandleEmpty.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/LightSources.class b/production/2006Redone Server/redone/game/items/impl/LightSources.class new file mode 100644 index 00000000..b5fd6ee3 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/LightSources.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/PotionMixing.class b/production/2006Redone Server/redone/game/items/impl/PotionMixing.class new file mode 100644 index 00000000..694f1aa7 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/PotionMixing.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/RareProtection.class b/production/2006Redone Server/redone/game/items/impl/RareProtection.class new file mode 100644 index 00000000..a39f8f3f Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/RareProtection.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Teles.class b/production/2006Redone Server/redone/game/items/impl/Teles.class new file mode 100644 index 00000000..c0ee4515 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Teles.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Trails.class b/production/2006Redone Server/redone/game/items/impl/Trails.class new file mode 100644 index 00000000..5a9be769 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Trails.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/WeaponPoison$Weapon.class b/production/2006Redone Server/redone/game/items/impl/WeaponPoison$Weapon.class new file mode 100644 index 00000000..713db72d Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/WeaponPoison$Weapon.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/WeaponPoison.class b/production/2006Redone Server/redone/game/items/impl/WeaponPoison.class new file mode 100644 index 00000000..dfad5776 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/WeaponPoison.class differ diff --git a/production/2006Redone Server/redone/game/items/impl/Weight.class b/production/2006Redone Server/redone/game/items/impl/Weight.class new file mode 100644 index 00000000..a3b80b03 Binary files /dev/null and b/production/2006Redone Server/redone/game/items/impl/Weight.class differ diff --git a/production/2006Redone Server/redone/game/npcs/Npc$1.class b/production/2006Redone Server/redone/game/npcs/Npc$1.class new file mode 100644 index 00000000..8f9940e3 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/Npc$1.class differ diff --git a/production/2006Redone Server/redone/game/npcs/Npc.class b/production/2006Redone Server/redone/game/npcs/Npc.class new file mode 100644 index 00000000..a720605f Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/Npc.class differ diff --git a/production/2006Redone Server/redone/game/npcs/NpcActions.class b/production/2006Redone Server/redone/game/npcs/NpcActions.class new file mode 100644 index 00000000..783d4684 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/NpcActions.class differ diff --git a/production/2006Redone Server/redone/game/npcs/NpcData.class b/production/2006Redone Server/redone/game/npcs/NpcData.class new file mode 100644 index 00000000..51ff7842 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/NpcData.class differ diff --git a/production/2006Redone Server/redone/game/npcs/NpcHandler.class b/production/2006Redone Server/redone/game/npcs/NpcHandler.class new file mode 100644 index 00000000..22ff6657 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/NpcHandler.class differ diff --git a/production/2006Redone Server/redone/game/npcs/NpcList.class b/production/2006Redone Server/redone/game/npcs/NpcList.class new file mode 100644 index 00000000..b97b4480 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/NpcList.class differ diff --git a/production/2006Redone Server/redone/game/npcs/NpcSize.class b/production/2006Redone Server/redone/game/npcs/NpcSize.class new file mode 100644 index 00000000..4c6a7729 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/NpcSize.class differ diff --git a/production/2006Redone Server/redone/game/npcs/drops/NPCDrops.class b/production/2006Redone Server/redone/game/npcs/drops/NPCDrops.class new file mode 100644 index 00000000..94ed65be Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/drops/NPCDrops.class differ diff --git a/production/2006Redone Server/redone/game/npcs/drops/NPCDropsHandler.class b/production/2006Redone Server/redone/game/npcs/drops/NPCDropsHandler.class new file mode 100644 index 00000000..52135b57 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/drops/NPCDropsHandler.class differ diff --git a/production/2006Redone Server/redone/game/npcs/impl/MilkCow$1.class b/production/2006Redone Server/redone/game/npcs/impl/MilkCow$1.class new file mode 100644 index 00000000..b764a540 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/impl/MilkCow$1.class differ diff --git a/production/2006Redone Server/redone/game/npcs/impl/MilkCow.class b/production/2006Redone Server/redone/game/npcs/impl/MilkCow.class new file mode 100644 index 00000000..3f9d742b Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/impl/MilkCow.class differ diff --git a/production/2006Redone Server/redone/game/npcs/impl/Pets.class b/production/2006Redone Server/redone/game/npcs/impl/Pets.class new file mode 100644 index 00000000..a26589b9 Binary files /dev/null and b/production/2006Redone Server/redone/game/npcs/impl/Pets.class differ diff --git a/production/2006Redone Server/redone/game/objects/Object.class b/production/2006Redone Server/redone/game/objects/Object.class new file mode 100644 index 00000000..f7b77b55 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/Object.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectDefaults.class b/production/2006Redone Server/redone/game/objects/ObjectDefaults.class new file mode 100644 index 00000000..84cd6d98 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectDefaults.class differ diff --git a/production/2006Redone Server/redone/game/objects/Objects.class b/production/2006Redone Server/redone/game/objects/Objects.class new file mode 100644 index 00000000..59505a23 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/Objects.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectsActions$1.class b/production/2006Redone Server/redone/game/objects/ObjectsActions$1.class new file mode 100644 index 00000000..aad352e9 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectsActions$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectsActions$2.class b/production/2006Redone Server/redone/game/objects/ObjectsActions$2.class new file mode 100644 index 00000000..f0dc2353 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectsActions$2.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectsActions$3.class b/production/2006Redone Server/redone/game/objects/ObjectsActions$3.class new file mode 100644 index 00000000..369f7b93 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectsActions$3.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectsActions$4.class b/production/2006Redone Server/redone/game/objects/ObjectsActions$4.class new file mode 100644 index 00000000..28dec968 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectsActions$4.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectsActions$5.class b/production/2006Redone Server/redone/game/objects/ObjectsActions$5.class new file mode 100644 index 00000000..b7041a30 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectsActions$5.class differ diff --git a/production/2006Redone Server/redone/game/objects/ObjectsActions.class b/production/2006Redone Server/redone/game/objects/ObjectsActions.class new file mode 100644 index 00000000..7ad45f89 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/ObjectsActions.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/AxeInLog.class b/production/2006Redone Server/redone/game/objects/impl/AxeInLog.class new file mode 100644 index 00000000..6992f2d2 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/AxeInLog.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/BrimhavenVines.class b/production/2006Redone Server/redone/game/objects/impl/BrimhavenVines.class new file mode 100644 index 00000000..5a3f6957 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/BrimhavenVines.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Climbing$1.class b/production/2006Redone Server/redone/game/objects/impl/Climbing$1.class new file mode 100644 index 00000000..50e8fa7e Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Climbing$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Climbing.class b/production/2006Redone Server/redone/game/objects/impl/Climbing.class new file mode 100644 index 00000000..c0122ef2 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Climbing.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/CrystalChest$1.class b/production/2006Redone Server/redone/game/objects/impl/CrystalChest$1.class new file mode 100644 index 00000000..0e510d8b Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/CrystalChest$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/CrystalChest.class b/production/2006Redone Server/redone/game/objects/impl/CrystalChest.class new file mode 100644 index 00000000..bfafe5d7 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/CrystalChest.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/FlourMill$1.class b/production/2006Redone Server/redone/game/objects/impl/FlourMill$1.class new file mode 100644 index 00000000..58c6bceb Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/FlourMill$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/FlourMill.class b/production/2006Redone Server/redone/game/objects/impl/FlourMill.class new file mode 100644 index 00000000..42e842d1 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/FlourMill.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Levers$1.class b/production/2006Redone Server/redone/game/objects/impl/Levers$1.class new file mode 100644 index 00000000..0583cc81 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Levers$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Levers.class b/production/2006Redone Server/redone/game/objects/impl/Levers.class new file mode 100644 index 00000000..37615e3c Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Levers.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects$1.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$1.class new file mode 100644 index 00000000..623d8546 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects$2$1.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$2$1.class new file mode 100644 index 00000000..a6df222a Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$2$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects$2.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$2.class new file mode 100644 index 00000000..aa884187 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$2.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects$3$1.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$3$1.class new file mode 100644 index 00000000..aa04a8ca Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$3$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects$3.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$3.class new file mode 100644 index 00000000..089caaa2 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$3.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects$4.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$4.class new file mode 100644 index 00000000..21602b84 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects$4.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/OtherObjects.class b/production/2006Redone Server/redone/game/objects/impl/OtherObjects.class new file mode 100644 index 00000000..fcd10002 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/OtherObjects.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Pickable$1.class b/production/2006Redone Server/redone/game/objects/impl/Pickable$1.class new file mode 100644 index 00000000..34a32e3b Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Pickable$1.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Pickable.class b/production/2006Redone Server/redone/game/objects/impl/Pickable.class new file mode 100644 index 00000000..af4948f1 Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Pickable.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Searching$SearchData.class b/production/2006Redone Server/redone/game/objects/impl/Searching$SearchData.class new file mode 100644 index 00000000..918f479b Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Searching$SearchData.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Searching.class b/production/2006Redone Server/redone/game/objects/impl/Searching.class new file mode 100644 index 00000000..d913014c Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Searching.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/SpecialObjects.class b/production/2006Redone Server/redone/game/objects/impl/SpecialObjects.class new file mode 100644 index 00000000..7a0dd1dc Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/SpecialObjects.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/UseOther.class b/production/2006Redone Server/redone/game/objects/impl/UseOther.class new file mode 100644 index 00000000..fa02fc2c Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/UseOther.class differ diff --git a/production/2006Redone Server/redone/game/objects/impl/Webs.class b/production/2006Redone Server/redone/game/objects/impl/Webs.class new file mode 100644 index 00000000..f42438ab Binary files /dev/null and b/production/2006Redone Server/redone/game/objects/impl/Webs.class differ diff --git a/production/2006Redone Server/redone/game/players/Client$1.class b/production/2006Redone Server/redone/game/players/Client$1.class new file mode 100644 index 00000000..bafd78e7 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Client$1.class differ diff --git a/production/2006Redone Server/redone/game/players/Client$2.class b/production/2006Redone Server/redone/game/players/Client$2.class new file mode 100644 index 00000000..097bbc6f Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Client$2.class differ diff --git a/production/2006Redone Server/redone/game/players/Client$3.class b/production/2006Redone Server/redone/game/players/Client$3.class new file mode 100644 index 00000000..14388be8 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Client$3.class differ diff --git a/production/2006Redone Server/redone/game/players/Client$4.class b/production/2006Redone Server/redone/game/players/Client$4.class new file mode 100644 index 00000000..758a7aa7 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Client$4.class differ diff --git a/production/2006Redone Server/redone/game/players/Client$TinterfaceText.class b/production/2006Redone Server/redone/game/players/Client$TinterfaceText.class new file mode 100644 index 00000000..ea4a7eff Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Client$TinterfaceText.class differ diff --git a/production/2006Redone Server/redone/game/players/Client.class b/production/2006Redone Server/redone/game/players/Client.class new file mode 100644 index 00000000..7c75a573 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Client.class differ diff --git a/production/2006Redone Server/redone/game/players/HighscoresHandler$1.class b/production/2006Redone Server/redone/game/players/HighscoresHandler$1.class new file mode 100644 index 00000000..cb5d0f4c Binary files /dev/null and b/production/2006Redone Server/redone/game/players/HighscoresHandler$1.class differ diff --git a/production/2006Redone Server/redone/game/players/HighscoresHandler$globalDmgComparator.class b/production/2006Redone Server/redone/game/players/HighscoresHandler$globalDmgComparator.class new file mode 100644 index 00000000..935e6efc Binary files /dev/null and b/production/2006Redone Server/redone/game/players/HighscoresHandler$globalDmgComparator.class differ diff --git a/production/2006Redone Server/redone/game/players/HighscoresHandler$totalGoldComparator.class b/production/2006Redone Server/redone/game/players/HighscoresHandler$totalGoldComparator.class new file mode 100644 index 00000000..89c00f0b Binary files /dev/null and b/production/2006Redone Server/redone/game/players/HighscoresHandler$totalGoldComparator.class differ diff --git a/production/2006Redone Server/redone/game/players/HighscoresHandler$totalLevelComparator.class b/production/2006Redone Server/redone/game/players/HighscoresHandler$totalLevelComparator.class new file mode 100644 index 00000000..46616830 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/HighscoresHandler$totalLevelComparator.class differ diff --git a/production/2006Redone Server/redone/game/players/HighscoresHandler.class b/production/2006Redone Server/redone/game/players/HighscoresHandler.class new file mode 100644 index 00000000..6f60e3dd Binary files /dev/null and b/production/2006Redone Server/redone/game/players/HighscoresHandler.class differ diff --git a/production/2006Redone Server/redone/game/players/Location.class b/production/2006Redone Server/redone/game/players/Location.class new file mode 100644 index 00000000..0d7768a8 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Location.class differ diff --git a/production/2006Redone Server/redone/game/players/Player.class b/production/2006Redone Server/redone/game/players/Player.class new file mode 100644 index 00000000..b2089ece Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Player.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerAction.class b/production/2006Redone Server/redone/game/players/PlayerAction.class new file mode 100644 index 00000000..80223c11 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerAction.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerAssistant$1$1.class b/production/2006Redone Server/redone/game/players/PlayerAssistant$1$1.class new file mode 100644 index 00000000..5e433d0d Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerAssistant$1$1.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerAssistant$1.class b/production/2006Redone Server/redone/game/players/PlayerAssistant$1.class new file mode 100644 index 00000000..751eac7a Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerAssistant$1.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerAssistant$2.class b/production/2006Redone Server/redone/game/players/PlayerAssistant$2.class new file mode 100644 index 00000000..1bc6cabd Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerAssistant$2.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerAssistant.class b/production/2006Redone Server/redone/game/players/PlayerAssistant.class new file mode 100644 index 00000000..638f838d Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerAssistant.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerHandler.class b/production/2006Redone Server/redone/game/players/PlayerHandler.class new file mode 100644 index 00000000..26879e2a Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerHandler.class differ diff --git a/production/2006Redone Server/redone/game/players/PlayerSave.class b/production/2006Redone Server/redone/game/players/PlayerSave.class new file mode 100644 index 00000000..94f4a0ae Binary files /dev/null and b/production/2006Redone Server/redone/game/players/PlayerSave.class differ diff --git a/production/2006Redone Server/redone/game/players/Position.class b/production/2006Redone Server/redone/game/players/Position.class new file mode 100644 index 00000000..c02894e5 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Position.class differ diff --git a/production/2006Redone Server/redone/game/players/Trading$1.class b/production/2006Redone Server/redone/game/players/Trading$1.class new file mode 100644 index 00000000..68f5efcf Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Trading$1.class differ diff --git a/production/2006Redone Server/redone/game/players/Trading.class b/production/2006Redone Server/redone/game/players/Trading.class new file mode 100644 index 00000000..4bd16d58 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/Trading.class differ diff --git a/production/2006Redone Server/redone/game/players/antimacro/AntiBotting.class b/production/2006Redone Server/redone/game/players/antimacro/AntiBotting.class new file mode 100644 index 00000000..765df9fa Binary files /dev/null and b/production/2006Redone Server/redone/game/players/antimacro/AntiBotting.class differ diff --git a/production/2006Redone Server/redone/game/players/antimacro/AntiSpam.class b/production/2006Redone Server/redone/game/players/antimacro/AntiSpam.class new file mode 100644 index 00000000..3960ccc1 Binary files /dev/null and b/production/2006Redone Server/redone/game/players/antimacro/AntiSpam.class differ diff --git a/production/2006Redone Server/redone/game/shops/ShopAssistant.class b/production/2006Redone Server/redone/game/shops/ShopAssistant.class new file mode 100644 index 00000000..f38f7766 Binary files /dev/null and b/production/2006Redone Server/redone/game/shops/ShopAssistant.class differ diff --git a/production/2006Redone Server/redone/game/shops/ShopHandler.class b/production/2006Redone Server/redone/game/shops/ShopHandler.class new file mode 100644 index 00000000..c0e2b7a4 Binary files /dev/null and b/production/2006Redone Server/redone/game/shops/ShopHandler.class differ diff --git a/production/2006Redone Server/redone/game/shops/Shops$Shop.class b/production/2006Redone Server/redone/game/shops/Shops$Shop.class new file mode 100644 index 00000000..cf9c8c8e Binary files /dev/null and b/production/2006Redone Server/redone/game/shops/Shops$Shop.class differ diff --git a/production/2006Redone Server/redone/game/shops/Shops.class b/production/2006Redone Server/redone/game/shops/Shops.class new file mode 100644 index 00000000..140f8d5e Binary files /dev/null and b/production/2006Redone Server/redone/game/shops/Shops.class differ diff --git a/production/2006Redone Server/redone/net/ActionSender.class b/production/2006Redone Server/redone/net/ActionSender.class new file mode 100644 index 00000000..d04f0a63 Binary files /dev/null and b/production/2006Redone Server/redone/net/ActionSender.class differ diff --git a/production/2006Redone Server/redone/net/CodecFactory.class b/production/2006Redone Server/redone/net/CodecFactory.class new file mode 100644 index 00000000..1282fc82 Binary files /dev/null and b/production/2006Redone Server/redone/net/CodecFactory.class differ diff --git a/production/2006Redone Server/redone/net/ConnectionHandler.class b/production/2006Redone Server/redone/net/ConnectionHandler.class new file mode 100644 index 00000000..d16c8c7b Binary files /dev/null and b/production/2006Redone Server/redone/net/ConnectionHandler.class differ diff --git a/production/2006Redone Server/redone/net/ConnectionThrottleFilter.class b/production/2006Redone Server/redone/net/ConnectionThrottleFilter.class new file mode 100644 index 00000000..620326d2 Binary files /dev/null and b/production/2006Redone Server/redone/net/ConnectionThrottleFilter.class differ diff --git a/production/2006Redone Server/redone/net/GameCodecFactory.class b/production/2006Redone Server/redone/net/GameCodecFactory.class new file mode 100644 index 00000000..a7b3b52b Binary files /dev/null and b/production/2006Redone Server/redone/net/GameCodecFactory.class differ diff --git a/production/2006Redone Server/redone/net/HostList.class b/production/2006Redone Server/redone/net/HostList.class new file mode 100644 index 00000000..9417954e Binary files /dev/null and b/production/2006Redone Server/redone/net/HostList.class differ diff --git a/production/2006Redone Server/redone/net/Packet$Size.class b/production/2006Redone Server/redone/net/Packet$Size.class new file mode 100644 index 00000000..79a97ddb Binary files /dev/null and b/production/2006Redone Server/redone/net/Packet$Size.class differ diff --git a/production/2006Redone Server/redone/net/Packet.class b/production/2006Redone Server/redone/net/Packet.class new file mode 100644 index 00000000..d0c6b119 Binary files /dev/null and b/production/2006Redone Server/redone/net/Packet.class differ diff --git a/production/2006Redone Server/redone/net/PacketBuffer.class b/production/2006Redone Server/redone/net/PacketBuffer.class new file mode 100644 index 00000000..afd9e975 Binary files /dev/null and b/production/2006Redone Server/redone/net/PacketBuffer.class differ diff --git a/production/2006Redone Server/redone/net/PacketBuilder.class b/production/2006Redone Server/redone/net/PacketBuilder.class new file mode 100644 index 00000000..0e47be29 Binary files /dev/null and b/production/2006Redone Server/redone/net/PacketBuilder.class differ diff --git a/production/2006Redone Server/redone/net/RS2LoginProtocolDecoder$1.class b/production/2006Redone Server/redone/net/RS2LoginProtocolDecoder$1.class new file mode 100644 index 00000000..0e9d26f7 Binary files /dev/null and b/production/2006Redone Server/redone/net/RS2LoginProtocolDecoder$1.class differ diff --git a/production/2006Redone Server/redone/net/RS2LoginProtocolDecoder.class b/production/2006Redone Server/redone/net/RS2LoginProtocolDecoder.class new file mode 100644 index 00000000..6b511555 Binary files /dev/null and b/production/2006Redone Server/redone/net/RS2LoginProtocolDecoder.class differ diff --git a/production/2006Redone Server/redone/net/RS2ProtocolDecoder.class b/production/2006Redone Server/redone/net/RS2ProtocolDecoder.class new file mode 100644 index 00000000..7af0067f Binary files /dev/null and b/production/2006Redone Server/redone/net/RS2ProtocolDecoder.class differ diff --git a/production/2006Redone Server/redone/net/RS2ProtocolEncoder.class b/production/2006Redone Server/redone/net/RS2ProtocolEncoder.class new file mode 100644 index 00000000..6c09c393 Binary files /dev/null and b/production/2006Redone Server/redone/net/RS2ProtocolEncoder.class differ diff --git a/production/2006Redone Server/redone/net/StaticPacketBuilder.class b/production/2006Redone Server/redone/net/StaticPacketBuilder.class new file mode 100644 index 00000000..b8903769 Binary files /dev/null and b/production/2006Redone Server/redone/net/StaticPacketBuilder.class differ diff --git a/production/2006Redone Server/redone/net/packets/PacketHandler.class b/production/2006Redone Server/redone/net/packets/PacketHandler.class new file mode 100644 index 00000000..ae5ebe1b Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/PacketHandler.class differ diff --git a/production/2006Redone Server/redone/net/packets/PacketType.class b/production/2006Redone Server/redone/net/packets/PacketType.class new file mode 100644 index 00000000..16d89f39 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/PacketType.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/AttackPlayer.class b/production/2006Redone Server/redone/net/packets/impl/AttackPlayer.class new file mode 100644 index 00000000..ef55539c Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/AttackPlayer.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Bank10.class b/production/2006Redone Server/redone/net/packets/impl/Bank10.class new file mode 100644 index 00000000..a7266730 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Bank10.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Bank5.class b/production/2006Redone Server/redone/net/packets/impl/Bank5.class new file mode 100644 index 00000000..fd972cea Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Bank5.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/BankAll.class b/production/2006Redone Server/redone/net/packets/impl/BankAll.class new file mode 100644 index 00000000..24cf72ef Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/BankAll.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/BankX1.class b/production/2006Redone Server/redone/net/packets/impl/BankX1.class new file mode 100644 index 00000000..985b2e83 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/BankX1.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/BankX2.class b/production/2006Redone Server/redone/net/packets/impl/BankX2.class new file mode 100644 index 00000000..15f5d07d Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/BankX2.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ChallengePlayer.class b/production/2006Redone Server/redone/net/packets/impl/ChallengePlayer.class new file mode 100644 index 00000000..b650d1cb Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ChallengePlayer.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ChangeAppearance.class b/production/2006Redone Server/redone/net/packets/impl/ChangeAppearance.class new file mode 100644 index 00000000..f7d5b2c5 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ChangeAppearance.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ChangeRegions.class b/production/2006Redone Server/redone/net/packets/impl/ChangeRegions.class new file mode 100644 index 00000000..752cc424 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ChangeRegions.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Chat.class b/production/2006Redone Server/redone/net/packets/impl/Chat.class new file mode 100644 index 00000000..0bafddea Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Chat.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClanChat.class b/production/2006Redone Server/redone/net/packets/impl/ClanChat.class new file mode 100644 index 00000000..fe2c97bc Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClanChat.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickItem.class b/production/2006Redone Server/redone/net/packets/impl/ClickItem.class new file mode 100644 index 00000000..5163db04 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickNPC$1.class b/production/2006Redone Server/redone/net/packets/impl/ClickNPC$1.class new file mode 100644 index 00000000..6db480b4 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickNPC$1.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickNPC$2.class b/production/2006Redone Server/redone/net/packets/impl/ClickNPC$2.class new file mode 100644 index 00000000..a3a83d41 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickNPC$2.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickNPC$3.class b/production/2006Redone Server/redone/net/packets/impl/ClickNPC$3.class new file mode 100644 index 00000000..13351a60 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickNPC$3.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickNPC.class b/production/2006Redone Server/redone/net/packets/impl/ClickNPC.class new file mode 100644 index 00000000..b6e42bd9 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickNPC.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$1.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$1.class new file mode 100644 index 00000000..a9e92835 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$1.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$2.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$2.class new file mode 100644 index 00000000..ad9b95d7 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$2.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$3.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$3.class new file mode 100644 index 00000000..a59f9ad0 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$3.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$4.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$4.class new file mode 100644 index 00000000..2c5d488a Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$4.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$5.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$5.class new file mode 100644 index 00000000..1c75b0ce Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$5.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$6.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$6.class new file mode 100644 index 00000000..c5ca5638 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$6.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$7.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$7.class new file mode 100644 index 00000000..abd82a7b Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$7.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$8.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$8.class new file mode 100644 index 00000000..0d9bca8c Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$8.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject$9.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject$9.class new file mode 100644 index 00000000..2caff666 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject$9.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickObject.class b/production/2006Redone Server/redone/net/packets/impl/ClickObject.class new file mode 100644 index 00000000..24e23ef7 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickObject.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickTab.class b/production/2006Redone Server/redone/net/packets/impl/ClickTab.class new file mode 100644 index 00000000..9dfc07c4 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickTab.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickingButtons.class b/production/2006Redone Server/redone/net/packets/impl/ClickingButtons.class new file mode 100644 index 00000000..1826f7d9 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickingButtons.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickingInGame.class b/production/2006Redone Server/redone/net/packets/impl/ClickingInGame.class new file mode 100644 index 00000000..07656488 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickingInGame.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ClickingStuff.class b/production/2006Redone Server/redone/net/packets/impl/ClickingStuff.class new file mode 100644 index 00000000..e2c71e79 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ClickingStuff.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Commands.class b/production/2006Redone Server/redone/net/packets/impl/Commands.class new file mode 100644 index 00000000..3dcb7d90 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Commands.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Countdown.class b/production/2006Redone Server/redone/net/packets/impl/Countdown.class new file mode 100644 index 00000000..c1bba40b Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Countdown.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/DropItem.class b/production/2006Redone Server/redone/net/packets/impl/DropItem.class new file mode 100644 index 00000000..c71cafe9 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/DropItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/FollowPlayer.class b/production/2006Redone Server/redone/net/packets/impl/FollowPlayer.class new file mode 100644 index 00000000..b8a5b46d Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/FollowPlayer.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/IdleLogout.class b/production/2006Redone Server/redone/net/packets/impl/IdleLogout.class new file mode 100644 index 00000000..1589e72e Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/IdleLogout.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemClick2.class b/production/2006Redone Server/redone/net/packets/impl/ItemClick2.class new file mode 100644 index 00000000..70f36e5c Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemClick2.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemClick2OnGroundItem.class b/production/2006Redone Server/redone/net/packets/impl/ItemClick2OnGroundItem.class new file mode 100644 index 00000000..ff783103 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemClick2OnGroundItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemClick3.class b/production/2006Redone Server/redone/net/packets/impl/ItemClick3.class new file mode 100644 index 00000000..1c4c1a9f Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemClick3.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemOnGroundItem.class b/production/2006Redone Server/redone/net/packets/impl/ItemOnGroundItem.class new file mode 100644 index 00000000..18207bbc Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemOnGroundItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemOnItem.class b/production/2006Redone Server/redone/net/packets/impl/ItemOnItem.class new file mode 100644 index 00000000..81b087c2 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemOnItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemOnNpc.class b/production/2006Redone Server/redone/net/packets/impl/ItemOnNpc.class new file mode 100644 index 00000000..05880391 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemOnNpc.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemOnObject.class b/production/2006Redone Server/redone/net/packets/impl/ItemOnObject.class new file mode 100644 index 00000000..8488e8c7 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemOnObject.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ItemOnPlayer.class b/production/2006Redone Server/redone/net/packets/impl/ItemOnPlayer.class new file mode 100644 index 00000000..80218e1b Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ItemOnPlayer.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/MagicOnFloorItems$1.class b/production/2006Redone Server/redone/net/packets/impl/MagicOnFloorItems$1.class new file mode 100644 index 00000000..954e12d4 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/MagicOnFloorItems$1.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/MagicOnFloorItems.class b/production/2006Redone Server/redone/net/packets/impl/MagicOnFloorItems.class new file mode 100644 index 00000000..cb91f4c6 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/MagicOnFloorItems.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/MagicOnItems.class b/production/2006Redone Server/redone/net/packets/impl/MagicOnItems.class new file mode 100644 index 00000000..f74d19cd Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/MagicOnItems.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/MoveItems.class b/production/2006Redone Server/redone/net/packets/impl/MoveItems.class new file mode 100644 index 00000000..9ee860b3 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/MoveItems.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/PickupItem$1.class b/production/2006Redone Server/redone/net/packets/impl/PickupItem$1.class new file mode 100644 index 00000000..01d7fb40 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/PickupItem$1.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/PickupItem.class b/production/2006Redone Server/redone/net/packets/impl/PickupItem.class new file mode 100644 index 00000000..72e1a9d8 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/PickupItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/PrivateMessaging.class b/production/2006Redone Server/redone/net/packets/impl/PrivateMessaging.class new file mode 100644 index 00000000..a7313fa2 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/PrivateMessaging.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/RemoveItem.class b/production/2006Redone Server/redone/net/packets/impl/RemoveItem.class new file mode 100644 index 00000000..845c5c8b Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/RemoveItem.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Report.class b/production/2006Redone Server/redone/net/packets/impl/Report.class new file mode 100644 index 00000000..8b0a4963 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Report.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/ReportHandler.class b/production/2006Redone Server/redone/net/packets/impl/ReportHandler.class new file mode 100644 index 00000000..9b89d098 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/ReportHandler.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/SilentPacket.class b/production/2006Redone Server/redone/net/packets/impl/SilentPacket.class new file mode 100644 index 00000000..3b17f59c Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/SilentPacket.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Trade.class b/production/2006Redone Server/redone/net/packets/impl/Trade.class new file mode 100644 index 00000000..1c231956 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Trade.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/Walking.class b/production/2006Redone Server/redone/net/packets/impl/Walking.class new file mode 100644 index 00000000..844ee405 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/Walking.class differ diff --git a/production/2006Redone Server/redone/net/packets/impl/WearItem.class b/production/2006Redone Server/redone/net/packets/impl/WearItem.class new file mode 100644 index 00000000..db632e51 Binary files /dev/null and b/production/2006Redone Server/redone/net/packets/impl/WearItem.class differ diff --git a/production/2006Redone Server/redone/net/rsa/RSAKeyGen.class b/production/2006Redone Server/redone/net/rsa/RSAKeyGen.class new file mode 100644 index 00000000..11e8dccd Binary files /dev/null and b/production/2006Redone Server/redone/net/rsa/RSAKeyGen.class differ diff --git a/production/2006Redone Server/redone/net/rsa/rsapriv b/production/2006Redone Server/redone/net/rsa/rsapriv new file mode 100644 index 00000000..f96d221a --- /dev/null +++ b/production/2006Redone Server/redone/net/rsa/rsapriv @@ -0,0 +1,3 @@ +private static final BigInteger RSA_MODULUS = new BigInteger("91553247461173033466542043374346300088148707506479543786501537350363031301992107112953015516557748875487935404852620239974482067336878286174236183516364787082711186740254168914127361643305190640280157664988536979163450791820893999053469529344247707567448479470137716627440246788713008490213212272520901741443"); + +private static final BigInteger RSA_EXPONENT = new BigInteger("33280025241734061313051117678670856264399753710527826596057587687835856000539511539311834363046145710983857746766009612538140077973762171163294453513440619295457626227183742315140865830778841533445402605660729039310637444146319289077374748018792349647460850308384280105990607337322160553135806205784213241305"); diff --git a/production/2006Redone Server/redone/net/rsa/rsapub b/production/2006Redone Server/redone/net/rsa/rsapub new file mode 100644 index 00000000..a90a5e5c --- /dev/null +++ b/production/2006Redone Server/redone/net/rsa/rsapub @@ -0,0 +1,3 @@ +private static final BigInteger RSA_MODULUS = new BigInteger("91553247461173033466542043374346300088148707506479543786501537350363031301992107112953015516557748875487935404852620239974482067336878286174236183516364787082711186740254168914127361643305190640280157664988536979163450791820893999053469529344247707567448479470137716627440246788713008490213212272520901741443"); + +private static final BigInteger RSA_EXPONENT = new BigInteger("65537"); diff --git a/production/2006Redone Server/redone/util/GameLogger.class b/production/2006Redone Server/redone/util/GameLogger.class new file mode 100644 index 00000000..700cd345 Binary files /dev/null and b/production/2006Redone Server/redone/util/GameLogger.class differ diff --git a/production/2006Redone Server/redone/util/HostBlacklist.class b/production/2006Redone Server/redone/util/HostBlacklist.class new file mode 100644 index 00000000..d3e6b7af Binary files /dev/null and b/production/2006Redone Server/redone/util/HostBlacklist.class differ diff --git a/production/2006Redone Server/redone/util/ISAACRandomGen.class b/production/2006Redone Server/redone/util/ISAACRandomGen.class new file mode 100644 index 00000000..7cf0ec94 Binary files /dev/null and b/production/2006Redone Server/redone/util/ISAACRandomGen.class differ diff --git a/production/2006Redone Server/redone/util/Misc.class b/production/2006Redone Server/redone/util/Misc.class new file mode 100644 index 00000000..cbd599bc Binary files /dev/null and b/production/2006Redone Server/redone/util/Misc.class differ diff --git a/production/2006Redone Server/redone/util/Stream.class b/production/2006Redone Server/redone/util/Stream.class new file mode 100644 index 00000000..f15ce7fb Binary files /dev/null and b/production/2006Redone Server/redone/util/Stream.class differ diff --git a/production/2006Redone Server/redone/world/Clan.class b/production/2006Redone Server/redone/world/Clan.class new file mode 100644 index 00000000..c9721b2a Binary files /dev/null and b/production/2006Redone Server/redone/world/Clan.class differ diff --git a/production/2006Redone Server/redone/world/ClanChatHandler.class b/production/2006Redone Server/redone/world/ClanChatHandler.class new file mode 100644 index 00000000..36f09604 Binary files /dev/null and b/production/2006Redone Server/redone/world/ClanChatHandler.class differ diff --git a/production/2006Redone Server/redone/world/GameObject.class b/production/2006Redone Server/redone/world/GameObject.class new file mode 100644 index 00000000..837c4885 Binary files /dev/null and b/production/2006Redone Server/redone/world/GameObject.class differ diff --git a/production/2006Redone Server/redone/world/GlobalDropsHandler$1.class b/production/2006Redone Server/redone/world/GlobalDropsHandler$1.class new file mode 100644 index 00000000..f54c1dd2 Binary files /dev/null and b/production/2006Redone Server/redone/world/GlobalDropsHandler$1.class differ diff --git a/production/2006Redone Server/redone/world/GlobalDropsHandler$GlobalDrop.class b/production/2006Redone Server/redone/world/GlobalDropsHandler$GlobalDrop.class new file mode 100644 index 00000000..714ffd94 Binary files /dev/null and b/production/2006Redone Server/redone/world/GlobalDropsHandler$GlobalDrop.class differ diff --git a/production/2006Redone Server/redone/world/GlobalDropsHandler.class b/production/2006Redone Server/redone/world/GlobalDropsHandler.class new file mode 100644 index 00000000..c813c1c7 Binary files /dev/null and b/production/2006Redone Server/redone/world/GlobalDropsHandler.class differ diff --git a/production/2006Redone Server/redone/world/ItemHandler.class b/production/2006Redone Server/redone/world/ItemHandler.class new file mode 100644 index 00000000..278cd68c Binary files /dev/null and b/production/2006Redone Server/redone/world/ItemHandler.class differ diff --git a/production/2006Redone Server/redone/world/ObjectHandler.class b/production/2006Redone Server/redone/world/ObjectHandler.class new file mode 100644 index 00000000..ca2457d3 Binary files /dev/null and b/production/2006Redone Server/redone/world/ObjectHandler.class differ diff --git a/production/2006Redone Server/redone/world/ObjectManager$1.class b/production/2006Redone Server/redone/world/ObjectManager$1.class new file mode 100644 index 00000000..8b9fa6a6 Binary files /dev/null and b/production/2006Redone Server/redone/world/ObjectManager$1.class differ diff --git a/production/2006Redone Server/redone/world/ObjectManager$2.class b/production/2006Redone Server/redone/world/ObjectManager$2.class new file mode 100644 index 00000000..1ecb74f9 Binary files /dev/null and b/production/2006Redone Server/redone/world/ObjectManager$2.class differ diff --git a/production/2006Redone Server/redone/world/ObjectManager$3.class b/production/2006Redone Server/redone/world/ObjectManager$3.class new file mode 100644 index 00000000..664cf51f Binary files /dev/null and b/production/2006Redone Server/redone/world/ObjectManager$3.class differ diff --git a/production/2006Redone Server/redone/world/ObjectManager.class b/production/2006Redone Server/redone/world/ObjectManager.class new file mode 100644 index 00000000..af565d60 Binary files /dev/null and b/production/2006Redone Server/redone/world/ObjectManager.class differ diff --git a/production/2006Redone Server/redone/world/Tile.class b/production/2006Redone Server/redone/world/Tile.class new file mode 100644 index 00000000..224f27a1 Binary files /dev/null and b/production/2006Redone Server/redone/world/Tile.class differ diff --git a/production/2006Redone Server/redone/world/TileControl.class b/production/2006Redone Server/redone/world/TileControl.class new file mode 100644 index 00000000..e733008f Binary files /dev/null and b/production/2006Redone Server/redone/world/TileControl.class differ diff --git a/production/2006Redone Server/redone/world/clip/ByteStream.class b/production/2006Redone Server/redone/world/clip/ByteStream.class new file mode 100644 index 00000000..0efc11f0 Binary files /dev/null and b/production/2006Redone Server/redone/world/clip/ByteStream.class differ diff --git a/production/2006Redone Server/redone/world/clip/ByteStreamExt.class b/production/2006Redone Server/redone/world/clip/ByteStreamExt.class new file mode 100644 index 00000000..4f8bfb6e Binary files /dev/null and b/production/2006Redone Server/redone/world/clip/ByteStreamExt.class differ diff --git a/production/2006Redone Server/redone/world/clip/MemoryArchive.class b/production/2006Redone Server/redone/world/clip/MemoryArchive.class new file mode 100644 index 00000000..e5821ddb Binary files /dev/null and b/production/2006Redone Server/redone/world/clip/MemoryArchive.class differ diff --git a/production/2006Redone Server/redone/world/clip/ObjectDef.class b/production/2006Redone Server/redone/world/clip/ObjectDef.class new file mode 100644 index 00000000..7716776c Binary files /dev/null and b/production/2006Redone Server/redone/world/clip/ObjectDef.class differ diff --git a/production/2006Redone Server/redone/world/clip/PathFinder.class b/production/2006Redone Server/redone/world/clip/PathFinder.class new file mode 100644 index 00000000..708cbcf8 Binary files /dev/null and b/production/2006Redone Server/redone/world/clip/PathFinder.class differ diff --git a/production/2006Redone Server/redone/world/clip/Region.class b/production/2006Redone Server/redone/world/clip/Region.class new file mode 100644 index 00000000..6c390a17 Binary files /dev/null and b/production/2006Redone Server/redone/world/clip/Region.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/Constants.class b/production/2006Redone file_server/org/apollo/jagcached/Constants.class new file mode 100644 index 00000000..1c66e171 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/Constants.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/FileServer.class b/production/2006Redone file_server/org/apollo/jagcached/FileServer.class new file mode 100644 index 00000000..40b848a9 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/FileServer.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/ChannelRequest.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/ChannelRequest.class new file mode 100644 index 00000000..8b1d5974 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/ChannelRequest.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/HttpRequestWorker.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/HttpRequestWorker.class new file mode 100644 index 00000000..c1ff63cc Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/HttpRequestWorker.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/JagGrabRequestWorker.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/JagGrabRequestWorker.class new file mode 100644 index 00000000..36e16372 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/JagGrabRequestWorker.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/OnDemandRequestWorker.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/OnDemandRequestWorker.class new file mode 100644 index 00000000..c7ecdc61 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/OnDemandRequestWorker.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestDispatcher.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestDispatcher.class new file mode 100644 index 00000000..755e0948 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestDispatcher.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestWorker.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestWorker.class new file mode 100644 index 00000000..976dab0b Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestWorker.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestWorkerPool.class b/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestWorkerPool.class new file mode 100644 index 00000000..c2ca115f Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/dispatch/RequestWorkerPool.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/fs/FileDescriptor.class b/production/2006Redone file_server/org/apollo/jagcached/fs/FileDescriptor.class new file mode 100644 index 00000000..bf6a1f08 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/fs/FileDescriptor.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/fs/FileSystemConstants.class b/production/2006Redone file_server/org/apollo/jagcached/fs/FileSystemConstants.class new file mode 100644 index 00000000..244816e7 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/fs/FileSystemConstants.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/fs/Index.class b/production/2006Redone file_server/org/apollo/jagcached/fs/Index.class new file mode 100644 index 00000000..b7a6082f Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/fs/Index.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/fs/IndexedFileSystem.class b/production/2006Redone file_server/org/apollo/jagcached/fs/IndexedFileSystem.class new file mode 100644 index 00000000..fcb52e34 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/fs/IndexedFileSystem.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/FileServerHandler.class b/production/2006Redone file_server/org/apollo/jagcached/net/FileServerHandler.class new file mode 100644 index 00000000..587a7521 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/FileServerHandler.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/HttpPipelineFactory.class b/production/2006Redone file_server/org/apollo/jagcached/net/HttpPipelineFactory.class new file mode 100644 index 00000000..a2d672ad Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/HttpPipelineFactory.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/JagGrabPipelineFactory.class b/production/2006Redone file_server/org/apollo/jagcached/net/JagGrabPipelineFactory.class new file mode 100644 index 00000000..b86ba19b Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/JagGrabPipelineFactory.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/NetworkConstants.class b/production/2006Redone file_server/org/apollo/jagcached/net/NetworkConstants.class new file mode 100644 index 00000000..54d18495 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/NetworkConstants.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/OnDemandPipelineFactory.class b/production/2006Redone file_server/org/apollo/jagcached/net/OnDemandPipelineFactory.class new file mode 100644 index 00000000..8c23b262 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/OnDemandPipelineFactory.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabRequest.class b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabRequest.class new file mode 100644 index 00000000..1e4801df Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabRequest.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabRequestDecoder.class b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabRequestDecoder.class new file mode 100644 index 00000000..47a75818 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabRequestDecoder.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabResponse.class b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabResponse.class new file mode 100644 index 00000000..25867092 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabResponse.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabResponseEncoder.class b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabResponseEncoder.class new file mode 100644 index 00000000..22fc58a9 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/jaggrab/JagGrabResponseEncoder.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequest$Priority.class b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequest$Priority.class new file mode 100644 index 00000000..19d1aac3 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequest$Priority.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequest.class b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequest.class new file mode 100644 index 00000000..c641fca6 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequest.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequestDecoder.class b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequestDecoder.class new file mode 100644 index 00000000..e08fd50d Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandRequestDecoder.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandResponse.class b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandResponse.class new file mode 100644 index 00000000..34f03053 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandResponse.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandResponseEncoder.class b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandResponseEncoder.class new file mode 100644 index 00000000..b2041398 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/ondemand/OnDemandResponseEncoder.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceRequest.class b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceRequest.class new file mode 100644 index 00000000..b0d24ad3 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceRequest.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceRequestDecoder.class b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceRequestDecoder.class new file mode 100644 index 00000000..890555ad Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceRequestDecoder.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceResponse.class b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceResponse.class new file mode 100644 index 00000000..6e2fc85b Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceResponse.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceResponseEncoder.class b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceResponseEncoder.class new file mode 100644 index 00000000..96f76356 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/net/service/ServiceResponseEncoder.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/resource/CombinedResourceProvider.class b/production/2006Redone file_server/org/apollo/jagcached/resource/CombinedResourceProvider.class new file mode 100644 index 00000000..5d1fbf76 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/resource/CombinedResourceProvider.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/resource/HypertextResourceProvider.class b/production/2006Redone file_server/org/apollo/jagcached/resource/HypertextResourceProvider.class new file mode 100644 index 00000000..9b870fe0 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/resource/HypertextResourceProvider.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/resource/ResourceProvider.class b/production/2006Redone file_server/org/apollo/jagcached/resource/ResourceProvider.class new file mode 100644 index 00000000..0d472511 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/resource/ResourceProvider.class differ diff --git a/production/2006Redone file_server/org/apollo/jagcached/resource/VirtualResourceProvider.class b/production/2006Redone file_server/org/apollo/jagcached/resource/VirtualResourceProvider.class new file mode 100644 index 00000000..840e34b1 Binary files /dev/null and b/production/2006Redone file_server/org/apollo/jagcached/resource/VirtualResourceProvider.class differ