diff --git a/CompiledServer/production/09Scape/replay_pid2760.log b/.attach_pid3023 similarity index 100% rename from CompiledServer/production/09Scape/replay_pid2760.log rename to .attach_pid3023 diff --git a/.gitignore b/.gitignore index 81d3c139b..5694d0185 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ production/* .idea/* +.idea/ +.idea/workspace.xml diff --git a/.idea/09Scape.iml b/.idea/09Scape.iml index 9ebac6267..cadb42c68 100644 --- a/.idea/09Scape.iml +++ b/.idea/09Scape.iml @@ -3,8 +3,6 @@ - - @@ -44,15 +42,6 @@ - - - - - - - - - diff --git a/.idea/misc.xml b/.idea/misc.xml index dc3ff8543..b5a2efe52 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 9dbbb4a3b..e69de29bb 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1572220718424 - - - - - - - \ No newline at end of file diff --git a/Client/.gitignore b/Client/.gitignore index 17a06722d..7098faf62 100644 --- a/Client/.gitignore +++ b/Client/.gitignore @@ -14,5 +14,4 @@ data/cache/ *.iml *.eml *.userlibraries -*.class data/players/** diff --git a/Client/src/org/runite/Client.java b/Client/src/org/runite/Client.java new file mode 100644 index 000000000..d50abe496 --- /dev/null +++ b/Client/src/org/runite/Client.java @@ -0,0 +1,57 @@ +package org.runite; + +import org.runite.jagex.GameShell; + +/** + * Handles the launching of our Game Client. + * @author Keldagrim Development Team + * + */ + +/* + +NOTICE: THIS IS THE LIVESERVER CLIENT. For development purposes, use GameLaunch.java instead!!! + + */ +public class Client { + + /** + * The game settings. + */ + public static GameSetting SETTINGS = new GameSetting("2009Scape", "34.68.75.237", 1, "live", false, false); + + /** + * The main method. + r @param args the arguments casted on runtime. + r_game + + */ + public static void main(String[]args) { + System.out.println("Running liveserver client"); + Configurations.LOCAL_SERVER = false; + Configurations.LOCAL_MS = false; + Configurations.MS_IP = Configurations.LOCAL_MS ? "127.0.0.1" : "34.68.75.237"; //Needs to be done because of order it's otherwise set + + for (int i = 0; i < args.length; i++) { + String[] cmd = args[i].split("="); + switch (cmd[0]) { + case "ip": + SETTINGS.setIp(cmd[1]); + break; + case "world": + SETTINGS.setWorld(Integer.parseInt(cmd[1])); + break; + } + } + launch(false); + } + + /** + * Launches the client in a determined mode. + * @param swiftkit If we're launching swift kit. + */ + public static void launch(boolean swiftkit) { + GameShell.launchDesktop(); + } + +} diff --git a/Client/src/org/runite/Configurations.java b/Client/src/org/runite/Configurations.java index 3525d00d3..c1f79ec70 100644 --- a/Client/src/org/runite/Configurations.java +++ b/Client/src/org/runite/Configurations.java @@ -27,8 +27,8 @@ public final class Configurations { /** * If the client is local. */ - public static final boolean LOCAL_MS = true; - public static final boolean LOCAL_SERVER = true; + public static boolean LOCAL_MS = true; + public static boolean LOCAL_SERVER = true; /** * Packaging. @@ -63,8 +63,8 @@ public final class Configurations { /** * The MS IP. */ - public static final String MS_IP = (Configurations.LOCAL_MS ? "127.0.0.1" : "frostblades.org"); - + public static String MS_IP = Configurations.LOCAL_MS ? "127.0.0.1" : "34.68.75.237"; + /** * The operation system name. */ diff --git a/Client/src/org/runite/GameLaunch.java b/Client/src/org/runite/GameLaunch.java index 43f5e6b85..dba35a584 100644 --- a/Client/src/org/runite/GameLaunch.java +++ b/Client/src/org/runite/GameLaunch.java @@ -12,7 +12,12 @@ public class GameLaunch { /** * The game settings. */ - public static GameSetting SETTINGS = new GameSetting("2009Scape", Configurations.LOCAL_SERVER ? "127.0.0.1" : "frostblades.org", 1, "live", false, false); + /* + + NOTICE: IF YOU'RE A DEVELOPER, THE EASIEST WAY TO CONNECT TO THE LIVESERVER IS WITH CLIENT.JAVA. THIS CLASS IS FOR LOCAL SERVER CONNECTING! + + */ + public static GameSetting SETTINGS = new GameSetting("2009Scape", Configurations.LOCAL_SERVER ? "127.0.0.1" : "34.68.75.237"/*"34.68.75.237"*/, 1, "live", false, false); /** * The main method. diff --git a/Client/src/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF b/Client/src/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..d7812e5ab --- /dev/null +++ b/Client/src/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/Client/src/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF b/Client/src/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..683bd2ea1 --- /dev/null +++ b/Client/src/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/Client/src/org/runite/jagex/Class114.java b/Client/src/org/runite/jagex/Class114.java index 890667dac..291cad664 100644 --- a/Client/src/org/runite/jagex/Class114.java +++ b/Client/src/org/runite/jagex/Class114.java @@ -35,8 +35,8 @@ final class Class114 { static final float[] method1705(int var0, int var1) { try { - float var2 = Class92.method1514() + Class92.method1505(); - int var3 = Class92.method1510(); + float var2 = Class92.method1514() + Class92.getLightingModelAmbient(); + int var3 = Class92.screenColorRgb(); float var7 = 0.58823526F; MouseListeningClass.aFloatArray1919[3] = 1.0F; float var4 = (float)(var3 >> 16 & 255) / 255.0F; diff --git a/Client/src/org/runite/jagex/Class121.java b/Client/src/org/runite/jagex/Class121.java index b771902d8..ae5ae2edd 100644 --- a/Client/src/org/runite/jagex/Class121.java +++ b/Client/src/org/runite/jagex/Class121.java @@ -161,7 +161,7 @@ final class Class121 { } var2 = Class3_Sub15.aClass89_2429.readByte(var0 ^ 29984); - System.out.println(var2); + //System.out.println(var2); //Not sure what this was debugging if(WorldListEntry.aClass155_2627 != null) { WorldListEntry.aClass155_2627.method2159(55); } diff --git a/Client/src/org/runite/jagex/Class140_Sub1_Sub1.java b/Client/src/org/runite/jagex/Class140_Sub1_Sub1.java index e25681601..697b3f916 100644 --- a/Client/src/org/runite/jagex/Class140_Sub1_Sub1.java +++ b/Client/src/org/runite/jagex/Class140_Sub1_Sub1.java @@ -1879,9 +1879,9 @@ final class Class140_Sub1_Sub1 extends Model { if(var3) { if(!Class106.aBoolean1441) { - var7 = (int)Class92.aFloatArray1312[0]; - var8 = (int)Class92.aFloatArray1312[1]; - var9 = (int)Class92.aFloatArray1312[2]; + var7 = (int)Class92.light0Position[0]; + var8 = (int)Class92.light0Position[1]; + var9 = (int)Class92.light0Position[2]; var10 = (int)Math.sqrt((double)(var7 * var7 + var8 * var8 + var9 * var9)); var11 = (int)((float)this.aShort3849 * 1.3F); var12 = this.aShort3819 * var10 >> 8; @@ -3113,22 +3113,22 @@ final class Class140_Sub1_Sub1 extends Model { int var2; int var3; - if(Class92.anInt1314 > 0) { - var2 = this.aClass6_3835.aShort95 - (this.aClass6_3835.aShort92 * Class92.anInt1314 >> 8) >> 3; - var3 = this.aClass6_3835.aShort94 - (this.aClass6_3835.aShort91 * Class92.anInt1314 >> 8) >> 3; + if(Class92.lightX > 0) { + var2 = this.aClass6_3835.aShort95 - (this.aClass6_3835.aShort92 * Class92.lightX >> 8) >> 3; + var3 = this.aClass6_3835.aShort94 - (this.aClass6_3835.aShort91 * Class92.lightX >> 8) >> 3; } else { - var2 = this.aClass6_3835.aShort95 - (this.aClass6_3835.aShort91 * Class92.anInt1314 >> 8) >> 3; - var3 = this.aClass6_3835.aShort94 - (this.aClass6_3835.aShort92 * Class92.anInt1314 >> 8) >> 3; + var2 = this.aClass6_3835.aShort95 - (this.aClass6_3835.aShort91 * Class92.lightX >> 8) >> 3; + var3 = this.aClass6_3835.aShort94 - (this.aClass6_3835.aShort92 * Class92.lightX >> 8) >> 3; } int var4; int var5; - if(Class92.anInt1315 > 0) { - var4 = this.aClass6_3835.aShort97 - (this.aClass6_3835.aShort92 * Class92.anInt1315 >> 8) >> 3; - var5 = this.aClass6_3835.aShort96 - (this.aClass6_3835.aShort91 * Class92.anInt1315 >> 8) >> 3; + if(Class92.lightY > 0) { + var4 = this.aClass6_3835.aShort97 - (this.aClass6_3835.aShort92 * Class92.lightY >> 8) >> 3; + var5 = this.aClass6_3835.aShort96 - (this.aClass6_3835.aShort91 * Class92.lightY >> 8) >> 3; } else { - var4 = this.aClass6_3835.aShort97 - (this.aClass6_3835.aShort91 * Class92.anInt1315 >> 8) >> 3; - var5 = this.aClass6_3835.aShort96 - (this.aClass6_3835.aShort92 * Class92.anInt1315 >> 8) >> 3; + var4 = this.aClass6_3835.aShort97 - (this.aClass6_3835.aShort91 * Class92.lightY >> 8) >> 3; + var5 = this.aClass6_3835.aShort96 - (this.aClass6_3835.aShort92 * Class92.lightY >> 8) >> 3; } int var6 = var3 - var2 + 1; @@ -3156,8 +3156,8 @@ final class Class140_Sub1_Sub1 extends Model { int var14; int var15; while(var9 < this.anInt3823) { - int var10 = (this.anIntArray3822[var9] - (this.anIntArray3845[var9] * Class92.anInt1314 >> 8) >> 3) - var2; - int var11 = (this.anIntArray3848[var9] - (this.anIntArray3845[var9] * Class92.anInt1315 >> 8) >> 3) - var4; + int var10 = (this.anIntArray3822[var9] - (this.anIntArray3845[var9] * Class92.lightX >> 8) >> 3) - var2; + int var11 = (this.anIntArray3848[var9] - (this.anIntArray3845[var9] * Class92.lightY >> 8) >> 3) - var4; int var12 = this.anIntArray3838[var9]; var13 = this.anIntArray3838[var9 + 1]; var14 = var12; diff --git a/Client/src/org/runite/jagex/Class141.java b/Client/src/org/runite/jagex/Class141.java index f5f8f9930..91b7d2227 100644 --- a/Client/src/org/runite/jagex/Class141.java +++ b/Client/src/org/runite/jagex/Class141.java @@ -107,8 +107,8 @@ final class Class141 { int var10 = var4 << 7; int var11 = var6 + var7 + var8 + var9 >> 2; int var12 = var5 << 7; - int var13 = var10 - (var11 * Class92.anInt1314 >> 8) >> 3; - int var14 = var12 - (var11 * Class92.anInt1315 >> 8) >> 3; + int var13 = var10 - (var11 * Class92.lightX >> 8) >> 3; + int var14 = var12 - (var11 * Class92.lightY >> 8) >> 3; if(var0 != 0 && var0 != 1 && (var2 || var3)) { method2050(aClass109_Sub1Array1843[var0], aClass109_Sub1_1840, var13 + 1, var14 + 1, var1, var2); } else { @@ -373,8 +373,8 @@ final class Class141 { static final void method2047(LDIndexedSprite var0, int var1, int var2, int var3) { if(var0 != null) { - int var4 = var1 - (var2 * Class92.anInt1314 >> 8) >> 3; - int var5 = var3 - (var2 * Class92.anInt1315 >> 8) >> 3; + int var4 = var1 - (var2 * Class92.lightX >> 8) >> 3; + int var5 = var3 - (var2 * Class92.lightY >> 8) >> 3; method2042(var0, aClass109_Sub1_1840, var4 + 1, var5 + 1); } } @@ -406,8 +406,8 @@ final class Class141 { if(var0 == null) { return false; } else { - int var4 = var1 - (var2 * Class92.anInt1314 >> 8) >> 3; - int var5 = var3 - (var2 * Class92.anInt1315 >> 8) >> 3; + int var4 = var1 - (var2 * Class92.lightX >> 8) >> 3; + int var5 = var3 - (var2 * Class92.lightY >> 8) >> 3; return method2040(var0, aClass109_Sub1_1840, var4 + 1, var5 + 1); } } @@ -449,8 +449,8 @@ final class Class141 { static final void method2051(LDIndexedSprite var0, int var1, int var2, int var3) { if(var0 != null) { - int var4 = var1 - (var2 * Class92.anInt1314 >> 8) >> 3; - int var5 = var3 - (var2 * Class92.anInt1315 >> 8) >> 3; + int var4 = var1 - (var2 * Class92.lightX >> 8) >> 3; + int var5 = var3 - (var2 * Class92.lightY >> 8) >> 3; method2034(var0, aClass109_Sub1_1840, var4 + 1, var5 + 1); } } diff --git a/Client/src/org/runite/jagex/Class158_Sub1.java b/Client/src/org/runite/jagex/Class158_Sub1.java index 37e3d1def..a3a5688ee 100644 --- a/Client/src/org/runite/jagex/Class158_Sub1.java +++ b/Client/src/org/runite/jagex/Class158_Sub1.java @@ -167,9 +167,9 @@ final class Class158_Sub1 extends Class158 implements ImageProducer, ImageObserv int var24; if(HDToolKit.highDetail) { if(!Class106.aBoolean1441) { - var10 = (int)Class92.aFloatArray1312[0]; - var11 = (int)Class92.aFloatArray1312[1]; - var37 = (int)Class92.aFloatArray1312[2]; + var10 = (int)Class92.light0Position[0]; + var11 = (int)Class92.light0Position[1]; + var37 = (int)Class92.light0Position[2]; var13 = (int)Math.sqrt((double)(var11 * var11 + (var10 * var10 - -(var37 * var37)))); var14 = 1024 * var13 >> 8; diff --git a/Client/src/org/runite/jagex/Class3_Sub13_Sub11.java b/Client/src/org/runite/jagex/Class3_Sub13_Sub11.java index 601aa4ae6..9bd364302 100644 --- a/Client/src/org/runite/jagex/Class3_Sub13_Sub11.java +++ b/Client/src/org/runite/jagex/Class3_Sub13_Sub11.java @@ -140,7 +140,7 @@ final class Class3_Sub13_Sub11 extends Class3_Sub13 { } Class86.anInt1191 = Class115.aClass86ArrayArray1581[var2][var1].anInt1178; - Class92.method1509((float)Class46.anInt741, (float)Class3_Sub13_Sub22.anInt3274, (float)Class86.anInt1191); + Class92.setLightPosition((float)Class46.anInt741, (float)Class3_Sub13_Sub22.anInt3274, (float)Class86.anInt1191); } catch (RuntimeException var4) { throw Class44.method1067(var4, "fm.C(" + var0 + ',' + var1 + ',' + var2 + ')'); } diff --git a/Client/src/org/runite/jagex/Class3_Sub13_Sub23.java b/Client/src/org/runite/jagex/Class3_Sub13_Sub23.java index 4b601be61..2eccdc706 100644 --- a/Client/src/org/runite/jagex/Class3_Sub13_Sub23.java +++ b/Client/src/org/runite/jagex/Class3_Sub13_Sub23.java @@ -70,7 +70,7 @@ static RSString aClass94_3282 = aClass94_3286; } else { RSByteBuffer buffer = new RSByteBuffer(buf); int opcode = buffer.getByte((byte)-67); - System.out.println(opcode); + //System.out.println(opcode); if(1 != opcode) { return false; } else { diff --git a/Client/src/org/runite/jagex/Class3_Sub13_Sub33.java b/Client/src/org/runite/jagex/Class3_Sub13_Sub33.java index 273111f16..24ad5f6b9 100644 --- a/Client/src/org/runite/jagex/Class3_Sub13_Sub33.java +++ b/Client/src/org/runite/jagex/Class3_Sub13_Sub33.java @@ -104,9 +104,9 @@ static RSString aClass94_3397 = aClass94_3400; static final void method324(int var0, boolean var1) { try { - Class92.method1506(Class92.anInt1322, (0.7F + (float)var0 * 0.1F) * 1.1523438F, 0.69921875F, 0.69921875F); - Class92.method1509(-50.0F, -60.0F, -50.0F); - Class92.method1508(Class92.anInt1316, 0); + Class92.setLightParams(Class92.defaultScreenColorRgb, (0.7F + (float)var0 * 0.1F) * 1.1523438F, 0.69921875F, 0.69921875F); + Class92.setLightPosition(-50.0F, -60.0F, -50.0F); + Class92.setFogValues(Class92.defaulFogColorRgb, 0); Class92.method1504(); if(var1) { aByteArrayArrayArray3390 = (byte[][][])((byte[][][])null); diff --git a/Client/src/org/runite/jagex/Class3_Sub30_Sub1.java b/Client/src/org/runite/jagex/Class3_Sub30_Sub1.java index ceffd67b8..0ae11d969 100644 --- a/Client/src/org/runite/jagex/Class3_Sub30_Sub1.java +++ b/Client/src/org/runite/jagex/Class3_Sub30_Sub1.java @@ -942,13 +942,13 @@ final class Class3_Sub30_Sub1 extends RSByteBuffer { Class41.anInt689 = var13 * Class132.anInt1736 + var12 * Class100.anInt1407 >> 8; } - Class92.method1506(CacheIndex.anInt1950, Class30.aFloat578, Class3_Sub13_Sub36.aFloat3424, Class12.aFloat319); - Class92.method1508(Class3_Sub28_Sub12.anInt3652, Class41.anInt689); + Class92.setLightParams(CacheIndex.anInt1950, Class30.aFloat578, Class3_Sub13_Sub36.aFloat3424, Class12.aFloat319); + Class92.setFogValues(Class3_Sub28_Sub12.anInt3652, Class41.anInt689); if(var4 != 1) { aClass94_3807 = (RSString)null; } - Class92.method1509((float)Class46.anInt741, (float)Class3_Sub13_Sub22.anInt3274, (float)Class86.anInt1191); + Class92.setLightPosition((float)Class46.anInt741, (float)Class3_Sub13_Sub22.anInt3274, (float)Class86.anInt1191); Class92.method1504(); return Class3_Sub28_Sub12.anInt3652; } catch (RuntimeException var16) { diff --git a/Client/src/org/runite/jagex/Class53.java b/Client/src/org/runite/jagex/Class53.java index 7b1f91198..02d5c6e95 100644 --- a/Client/src/org/runite/jagex/Class53.java +++ b/Client/src/org/runite/jagex/Class53.java @@ -152,7 +152,7 @@ final class Class53 { var5.activity = buffer.getGJString2(98); var5.address = buffer.getGJString2(79); GameLaunch.SETTINGS.setWorld(worldId); - System.out.println(GameLaunch.SETTINGS.getWorld()); + //System.out.println(GameLaunch.SETTINGS.getWorld()); } Class3_Sub28_Sub7.updateStamp = buffer.getInt(); Class30.loadedWorldList = true; diff --git a/Client/src/org/runite/jagex/Class68.java b/Client/src/org/runite/jagex/Class68.java index ba379ae65..884f9b54e 100644 --- a/Client/src/org/runite/jagex/Class68.java +++ b/Client/src/org/runite/jagex/Class68.java @@ -460,7 +460,7 @@ final class Class68 { var3.glTexEnvi(8960, '\u8590', 768); var3.glBlendFunc(770, 771); var3.glDepthMask(true); - var3.glFogfv(2918, Class92.aFloatArray1319, 0); + var3.glFogfv(2918, Class92.fogColor, 0); var3.glEnableClientState('\u8078'); HDToolKit.method1846(); } diff --git a/Client/src/org/runite/jagex/Class72.java b/Client/src/org/runite/jagex/Class72.java index 75dc36d30..3a68e54ac 100644 --- a/Client/src/org/runite/jagex/Class72.java +++ b/Client/src/org/runite/jagex/Class72.java @@ -236,8 +236,8 @@ final class Class72 { static final float[] method1297(byte var0) { try { - float var1 = Class92.method1514() + Class92.method1505(); - int var2 = Class92.method1510(); + float var1 = Class92.method1514() + Class92.getLightingModelAmbient(); + int var2 = Class92.screenColorRgb(); float var3 = (float)(255 & var2 >> 16) / 255.0F; MouseListeningClass.aFloatArray1919[3] = 1.0F; if(var0 != -50) { diff --git a/Client/src/org/runite/jagex/Class86.java b/Client/src/org/runite/jagex/Class86.java index 099d1b38b..6add05b62 100644 --- a/Client/src/org/runite/jagex/Class86.java +++ b/Client/src/org/runite/jagex/Class86.java @@ -107,11 +107,11 @@ final class Class86 { public Class86() { try { - this.anInt1177 = Class92.anInt1322; + this.anInt1177 = Class92.defaultScreenColorRgb; this.aFloat1189 = 1.2F; this.anInt1178 = -50; this.aFloat1187 = 1.1523438F; - this.anInt1175 = Class92.anInt1316; + this.anInt1175 = Class92.defaulFogColorRgb; this.anInt1181 = -60; this.aFloat1190 = 0.69921875F; this.anInt1184 = 0; @@ -125,7 +125,7 @@ final class Class86 { try { int var2 = var1.getByte((byte)-92); if(~(var2 & 1) == -1) { - this.anInt1177 = Class92.anInt1322; + this.anInt1177 = Class92.defaultScreenColorRgb; } else { this.anInt1177 = var1.getInt(); } @@ -159,7 +159,7 @@ final class Class86 { } if((32 & var2) == 0) { - this.anInt1175 = Class92.anInt1316; + this.anInt1175 = Class92.defaulFogColorRgb; } else { this.anInt1175 = var1.getInt(); } diff --git a/Client/src/org/runite/jagex/Class92.java b/Client/src/org/runite/jagex/Class92.java index f144d15a3..e187d39c8 100644 --- a/Client/src/org/runite/jagex/Class92.java +++ b/Client/src/org/runite/jagex/Class92.java @@ -4,129 +4,136 @@ import javax.media.opengl.GL; final class Class92 { - static float[] aFloatArray1312 = new float[4]; - private static int anInt1313 = -1; - static int anInt1314; - static int anInt1315; - static int anInt1316 = 13156520; - private static float aFloat1317 = -1.0F; - private static float aFloat1318 = -1.0F; - static float[] aFloatArray1319 = new float[4]; - private static float aFloat1320; - private static float[] aFloatArray1321 = new float[4]; - static int anInt1322 = 16777215; - private static int anInt1323 = -1; - private static int anInt1324 = -1; + static float[] light0Position = new float[4]; + private static int screenColorRgb = -1; + static int lightX; + static int lightY; + static int defaulFogColorRgb = 13156520; + private static float light0Diffuse = -1.0F; + private static float light1Diffuse = -1.0F; + static float[] fogColor = new float[4]; + private static float lightModelAmbient; + private static float[] light1Position = new float[4]; + static int defaultScreenColorRgb = 16777215; + private static int fogOffset = -1; + private static int fogColorRGB = -1; static final void method1504() { - GL var0 = HDToolKit.gl; - var0.glLightfv(16384, 4611, aFloatArray1312, 0); - var0.glLightfv(16385, 4611, aFloatArray1321, 0); + GL gl = HDToolKit.gl; + gl.glLightfv(16384, 4611, light0Position, 0); + gl.glLightfv(16385, 4611, light1Position, 0); } - static final float method1505() { - return aFloat1317; + static final float getLightingModelAmbient() { + return light0Diffuse; } - static final void method1506(int var0, float var1, float var2, float var3) { - if(anInt1313 != var0 || aFloat1320 != var1 || aFloat1317 != var2 || aFloat1318 != var3) { - anInt1313 = var0; - aFloat1320 = var1; - aFloat1317 = var2; - aFloat1318 = var3; - javax.media.opengl.GL var4 = HDToolKit.gl; - float var5 = (float)(var0 >> 16 & 255) / 255.0F; - float var6 = (float)(var0 >> 8 & 255) / 255.0F; - float var7 = (float)(var0 & 255) / 255.0F; - float[] var8 = new float[]{var1 * var5, var1 * var6, var1 * var7, 1.0F}; - var4.glLightModelfv(2899, var8, 0); - float[] var9 = new float[]{var2 * var5, var2 * var6, var2 * var7, 1.0F}; - var4.glLightfv(16384, 4609, var9, 0); - float[] var10 = new float[]{-var3 * var5, -var3 * var6, -var3 * var7, 1.0F}; - var4.glLightfv(16385, 4609, var10, 0); - } + static final void setLightParams(int color, float ambientMod, float l0Diffuse, float l1Diffuse) { + if (screenColorRgb != color || lightModelAmbient != ambientMod || light0Diffuse != l0Diffuse || light1Diffuse != l1Diffuse) { + screenColorRgb = color; + lightModelAmbient = ambientMod; + light0Diffuse = l0Diffuse; + light1Diffuse = l1Diffuse; + final GL gl = HDToolKit.gl; + final float red = (color >> 16 & 0xff) / 255.0F; + final float green = (color >> 8 & 0xff) / 255.0F; + final float blue = (color & 0xff) / 255.0F; + final float[] lightModelAmbientParams = { ambientMod * red, ambientMod * green, ambientMod * blue, 1.0F }; + gl.glLightModelfv(2899, lightModelAmbientParams, 0);//LIGHT_MODEL_AMBIENT + final float[] light0Params = { l0Diffuse * red, l0Diffuse * green, l0Diffuse * blue, 1.0F }; + gl.glLightfv(16384, 4609, light0Params, 0);//LIGHT0, DIFFUSE + final float[] light1Params = { -l1Diffuse * red, -l1Diffuse * green, -l1Diffuse * blue, 1.0F }; + gl.glLightfv(16385, 4609, light1Params, 0);//LIGHT1, DIFFUSE + } } public static void method1507() { - aFloatArray1312 = null; - aFloatArray1321 = null; - aFloatArray1319 = null; + light0Position = null; + light1Position = null; + fogColor = null; } - static final void method1508(int var0, int var1) { - if(anInt1324 != var0 || anInt1323 != var1) { - anInt1324 = var0; - anInt1323 = var1; - javax.media.opengl.GL var2 = HDToolKit.gl; - byte var3 = 50; - short var4 = 3584; - aFloatArray1319[0] = (float)(var0 >> 16 & 255) / 255.0F; - aFloatArray1319[1] = (float)(var0 >> 8 & 255) / 255.0F; - aFloatArray1319[2] = (float)(var0 & 255) / 255.0F; - var2.glFogi(2917, 9729); - var2.glFogf(2914, 0.95F); - var2.glHint(3156, 4353); - int var5 = var4 / 2/* - 512 - var1*/; - if(var5 < var3) { - var5 = var3; + static final void setFogValues(int fogCol, int fogOff) { + if(fogColorRGB != fogCol || fogOffset != fogOff) { + fogColorRGB = fogCol; + fogOffset = fogOff; + final GL gl = HDToolKit.gl; + byte lowestFogStart = 50; + //short baseFogStart = 3584; This is unused because it was originally this but to avoid math jagex simplified it. + fogColor[0] = (fogCol >> 16 & 0xff) / 255.0F; + fogColor[1] = (fogCol >> 8 & 0xff) / 255.0F; + fogColor[2] = (fogCol & 0xff) / 255.0F; + //2917 FOG_MODE + //9729 LINEAR + gl.glFogi(2917, 9729); + //FOG_DENSITY + gl.glFogf(2914, 0.95F); + //3156 = FOG_HINT + //4353 = FASTEST, 4354 = NICEST, 4352 = DONT_CARE + gl.glHint(3156, 4353); + int fogStart = 3072 - fogOff;//baseFogStart - 512 - fogOff + if (fogStart < lowestFogStart) { + fogStart = lowestFogStart; } - - var2.glFogf(2915, (float)var5); - var2.glFogf(2916, (float)(var4 - 256)); - var2.glFogfv(2918, aFloatArray1319, 0); + //FOG_START + gl.glFogf(2915, fogStart); + //FOG_END + gl.glFogf(2916, 3328.0F);//baseFogStart - 256 + //FOG_COLOR + gl.glFogfv(2918, fogColor, 0); } } - static final void method1509(float var0, float var1, float var2) { - if(aFloatArray1312[0] != var0 || aFloatArray1312[1] != var1 || aFloatArray1312[2] != var2) { - aFloatArray1312[0] = var0; - aFloatArray1312[1] = var1; - aFloatArray1312[2] = var2; - aFloatArray1321[0] = -var0; - aFloatArray1321[1] = -var1; - aFloatArray1321[2] = -var2; - anInt1314 = (int)(var0 * 256.0F / var1); - anInt1315 = (int)(var2 * 256.0F / var1); + static final void setLightPosition(float x, float y, float z) { + if(light0Position[0] != x || light0Position[1] != y || light0Position[2] != z) { + light0Position[0] = x; + light0Position[1] = y; + light0Position[2] = z; + light1Position[0] = -x; + light1Position[1] = -y; + light1Position[2] = -z; + lightX = (int)(x * 256.0F / y); + lightY = (int)(z * 256.0F / y); } } - static final int method1510() { - return anInt1313; + static final int screenColorRgb() { + return screenColorRgb; } static final void method1511() { - javax.media.opengl.GL var0 = HDToolKit.gl; - var0.glColorMaterial(1028, 5634); - var0.glEnable(2903); - float[] var1 = new float[]{0.0F, 0.0F, 0.0F, 1.0F}; - var0.glLightfv(16384, 4608, var1, 0); - var0.glEnable(16384); - float[] var2 = new float[]{0.0F, 0.0F, 0.0F, 1.0F}; - var0.glLightfv(16385, 4608, var2, 0); - var0.glEnable(16385); - anInt1313 = -1; - anInt1324 = -1; - method1513(); + final GL gl = HDToolKit.gl; + gl.glColorMaterial(1028, 5634);//FRONT, AMBIENT_AND_DIFFUSE + gl.glEnable(2903);//COLOR_MATERIAL + final float[] light0Params = { 0.0F, 0.0F, 0.0F, 1.0F }; + gl.glLightfv(16384, 4608, light0Params, 0);//LIGHT0, AMBIENT + gl.glEnable(16384);//LIGHT0 + final float[] light1Params = { 0.0F, 0.0F, 0.0F, 1.0F }; + gl.glLightfv(16385, 4608, light1Params, 0);//LIGHT1, AMBIENT + gl.glEnable(16385);//LIGHT1 + screenColorRgb = -1; + fogColorRGB = -1; + initDefaults(); } static final void method1512(float[] var0) { if(var0 == null) { - var0 = aFloatArray1319; + var0 = fogColor; } - javax.media.opengl.GL var1 = HDToolKit.gl; - var1.glFogfv(2918, var0, 0); + GL gl = HDToolKit.gl; + gl.glFogfv(2918, var0, 0); } - private static final void method1513() { - method1506(anInt1322, 1.1523438F, 0.69921875F, 1.2F); - method1509(-50.0F, -60.0F, -50.0F); - method1508(anInt1316, 0); + private static final void initDefaults() { + setLightParams(defaultScreenColorRgb, 1.1523438F, 0.69921875F, 1.2F); + setLightPosition(-50.0F, -60.0F, -50.0F); + setFogValues(defaulFogColorRgb, 0); } static final float method1514() { - return aFloat1320; + return lightModelAmbient; } } diff --git a/Client/src/org/runite/jagex/Client.java b/Client/src/org/runite/jagex/Client.java index e1a435f03..f06a4c050 100644 --- a/Client/src/org/runite/jagex/Client.java +++ b/Client/src/org/runite/jagex/Client.java @@ -390,7 +390,7 @@ public final class Client extends GameShell { Class3_Sub28_Sub19.anInt3773 = 40000 + ObjectDefinition.worldId; } else if(Class44.anInt718 == 2) { RuntimeException_Sub1.worldListHost = "127.0.0.1"; - System.out.println("port = " + Class53.anInt867); + System.out.println("Setting worldListHost to 127.0.0.1, port = " + Class53.anInt867); Class53.anInt867 = ObjectDefinition.worldId + '\uc350'; Class3_Sub28_Sub19.anInt3773 = ObjectDefinition.worldId + '\u9c40'; } @@ -406,8 +406,8 @@ public final class Client extends GameShell { Class3_Sub25.aShortArray2548 = Class164_Sub1.aShortArray3011; } else { Class101.aBoolean1419 = true; - Class92.anInt1322 = 16777215; - Class92.anInt1316 = 0; + Class92.defaultScreenColorRgb = 16777215; + Class92.defaulFogColorRgb = 0; Class15.aShortArrayArray344 = Class118.aShortArrayArray1619; Class101.aShortArrayArray1429 = Class75_Sub1.aShortArrayArray2634; Class3_Sub25.aShortArray2548 = Class2.aShortArray63; diff --git a/Client/src/org/runite/jagex/ClientLoader.java b/Client/src/org/runite/jagex/ClientLoader.java index 12c69da09..faaae5d9a 100644 --- a/Client/src/org/runite/jagex/ClientLoader.java +++ b/Client/src/org/runite/jagex/ClientLoader.java @@ -88,7 +88,7 @@ public class ClientLoader extends Applet { public void launch() { try { ClientLoader.world = "" + GameLaunch.SETTINGS.getWorld(); - System.out.println(GameLaunch.SETTINGS.getWorld()); + //System.out.println(GameLaunch.SETTINGS.getWorld()); this.frame = new JFrame(GameLaunch.SETTINGS.getName()); this.frame.setLayout(new BorderLayout()); this.frame.setBackground(Color.BLACK); diff --git a/Client/src/org/runite/jagex/GameShell.java b/Client/src/org/runite/jagex/GameShell.java index 6406c2c51..cf75caa1b 100644 --- a/Client/src/org/runite/jagex/GameShell.java +++ b/Client/src/org/runite/jagex/GameShell.java @@ -20,7 +20,7 @@ public abstract class GameShell extends Applet implements Runnable, FocusListene /** * The game settings. */ - public static GameSetting SETTINGS = new GameSetting(GameLaunch.SETTINGS.getName(), Configurations.LOCAL_MS ? "127.0.0.1" : "frostblades.org", 1, "live", false, false); + public static GameSetting SETTINGS = new GameSetting(GameLaunch.SETTINGS.getName(), Configurations.LOCAL_MS ? "127.0.0.1" : "34.68.75.237"/*"34.68.75.237"*/, 1, "live", false, false); private boolean aBoolean1 = false; diff --git a/Client/src/org/runite/jagex/Signlink.java b/Client/src/org/runite/jagex/Signlink.java index b189f3aaa..084a2f18a 100644 --- a/Client/src/org/runite/jagex/Signlink.java +++ b/Client/src/org/runite/jagex/Signlink.java @@ -153,6 +153,7 @@ public class Signlink implements Runnable { } public final Class64 method1441(byte var1, String address, int port) { + //System.out.println("var1: " + var1 + ", add: " + address + ":" + port); return var1 != 8?null:this.method1435(1, 0, address, port, -17); } diff --git a/CompiledServer/Guides/UbuntuServerHostGuide.md b/CompiledServer/Guides/UbuntuServerHostGuide.md new file mode 100644 index 000000000..d693835b4 --- /dev/null +++ b/CompiledServer/Guides/UbuntuServerHostGuide.md @@ -0,0 +1,13 @@ +Ubuntu 18.04 LTS: + +1. Get SQL: https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04 +2. Remove the password: https://stackoverflow.com/questions/44890331/how-do-i-setup-mysql-with-a-blank-empty-password-on-ubuntu-16-04 +3. Install Java: sudo apt install default-jre +4. Create global & server database: +* Login: mysql -u root -p +* Create: +* CREATE DATABASE server; +* CREATE DATABASE global; +5. Import global & server databases: +* mysql -u root -p server < server.sql +* mysql -u root -p global < global.sql diff --git a/CompiledServer/production/09Scape/.gitignore b/CompiledServer/production/09Scape/.gitignore index 0e567a58a..031002751 100644 --- a/CompiledServer/production/09Scape/.gitignore +++ b/CompiledServer/production/09Scape/.gitignore @@ -7,11 +7,9 @@ data/profile/** .DS_Store** .project** .classpath** -.class** /bin/ /out/ *.iml *.eml *.userlibraries -*.class data/players/** diff --git a/CompiledServer/production/09Scape/Crandor Server - 530 - World 1.bat b/CompiledServer/production/09Scape/Crandor Server - 530 - World 1.bat index feba58153..e10d1ccec 100644 --- a/CompiledServer/production/09Scape/Crandor Server - 530 - World 1.bat +++ b/CompiledServer/production/09Scape/Crandor Server - 530 - World 1.bat @@ -1,4 +1,4 @@ @echo off @title World 1 -java -server -Xms512m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.Management server1.properties +java -server -Xms512m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.crandor.Server server1.properties pause \ No newline at end of file diff --git a/CompiledServer/production/09Scape/Crandor Server - 530 - World 2.bat b/CompiledServer/production/09Scape/Crandor Server - 530 - World 2.bat index eb9db8e71..37e59a4a6 100644 --- a/CompiledServer/production/09Scape/Crandor Server - 530 - World 2.bat +++ b/CompiledServer/production/09Scape/Crandor Server - 530 - World 2.bat @@ -1,4 +1,4 @@ @echo off @title World 2 -java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.Management server2.properties -pause \ No newline at end of file +java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.crandor.Server server2.properties +pause diff --git a/CompiledServer/production/09Scape/Crandor Server - 530 - World 3.bat b/CompiledServer/production/09Scape/Crandor Server - 530 - World 3.bat index d0b154030..e1d8c6b16 100644 --- a/CompiledServer/production/09Scape/Crandor Server - 530 - World 3.bat +++ b/CompiledServer/production/09Scape/Crandor Server - 530 - World 3.bat @@ -1,4 +1,4 @@ @echo off @title World 3 -java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.Management server3.properties -pause \ No newline at end of file +java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.crandor.Server server3.properties +pause diff --git a/CompiledServer/production/09Scape/META-INF/09Scape.kotlin_module b/CompiledServer/production/09Scape/META-INF/09Scape.kotlin_module new file mode 100644 index 000000000..8fb60192d Binary files /dev/null and b/CompiledServer/production/09Scape/META-INF/09Scape.kotlin_module differ diff --git a/CompiledServer/production/09Scape/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/META-INF/MANIFEST.MF index c2c137eb9..d7812e5ab 100644 --- a/CompiledServer/production/09Scape/META-INF/MANIFEST.MF +++ b/CompiledServer/production/09Scape/META-INF/MANIFEST.MF @@ -1,3 +1,3 @@ -Manifest-Version: 1.0 -Main-Class: org.runite.GameLaunch - +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/CompiledServer/production/09Scape/METAs/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/METAs/META-INF/MANIFEST.MF new file mode 100644 index 000000000..683bd2ea1 --- /dev/null +++ b/CompiledServer/production/09Scape/METAs/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/CompiledServer/production/09Scape/Test.bat b/CompiledServer/production/09Scape/Test.bat deleted file mode 100644 index 7014dd595..000000000 --- a/CompiledServer/production/09Scape/Test.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -@title World 1 -java -server -Xms512m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.tools.Test -pause \ No newline at end of file diff --git a/CompiledServer/production/09Scape/data/cache begin.zip b/CompiledServer/production/09Scape/data/cache begin.zip index 7f9139227..7e0e4e7d2 100644 Binary files a/CompiledServer/production/09Scape/data/cache begin.zip and b/CompiledServer/production/09Scape/data/cache begin.zip differ diff --git a/CompiledServer/production/09Scape/data/cache.zip b/CompiledServer/production/09Scape/data/cache.zip index d18a7ef67..9633ea1dd 100644 Binary files a/CompiledServer/production/09Scape/data/cache.zip and b/CompiledServer/production/09Scape/data/cache.zip differ diff --git a/CompiledServer/production/09Scape/data/cacheback up.rar b/CompiledServer/production/09Scape/data/cacheback up.rar index 64d970387..098476238 100644 Binary files a/CompiledServer/production/09Scape/data/cacheback up.rar and b/CompiledServer/production/09Scape/data/cacheback up.rar differ diff --git a/CompiledServer/production/09Scape/data/eco/grand_exchange_db.emp b/CompiledServer/production/09Scape/data/eco/grand_exchange_db.emp index 5661ec662..5a21fe783 100644 Binary files a/CompiledServer/production/09Scape/data/eco/grand_exchange_db.emp and b/CompiledServer/production/09Scape/data/eco/grand_exchange_db.emp differ diff --git a/CompiledServer/production/09Scape/data/kratoscache.zip b/CompiledServer/production/09Scape/data/kratoscache.zip index fcf7b882f..f89be5e74 100644 Binary files a/CompiledServer/production/09Scape/data/kratoscache.zip and b/CompiledServer/production/09Scape/data/kratoscache.zip differ diff --git a/CompiledServer/production/09Scape/global.sql b/CompiledServer/production/09Scape/global.sql index b33a1b335..59aa8b4c2 100644 --- a/CompiledServer/production/09Scape/global.sql +++ b/CompiledServer/production/09Scape/global.sql @@ -1,13 +1,15 @@ -- phpMyAdmin SQL Dump --- version 4.5.1 --- http://www.phpmyadmin.net +-- version 4.9.0.1 +-- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 --- Generation Time: Mar 26, 2016 at 01:08 AM --- Server version: 10.1.10-MariaDB --- PHP Version: 5.5.33 +-- Generation Time: Nov 06, 2019 at 01:33 AM +-- Server version: 10.4.6-MariaDB +-- PHP Version: 7.3.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET AUTOCOMMIT = 0; +START TRANSACTION; SET time_zone = "+00:00"; @@ -33,43 +35,6 @@ CREATE TABLE `dev_log` ( `date` timestamp NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `dev_log` --- - -INSERT INTO `dev_log` (`id`, `username`, `content`, `date`) VALUES -(1, 'vexia', 'Added Arios voting bonds as a reward', '2015-12-04 04:03:28'), -(3, 'vexia', 'Added profile viewing (forums)', '2015-12-06 00:07:11'), -(4, 'vexia', 'Added herb boxes', '2015-12-06 00:07:23'), -(5, 'vexia', 'Added an NPC to buy low-level skilling items for high price!', '2015-12-06 18:05:16'), -(6, 'vexia', 'Adjusted home shops & prices', '2015-12-06 21:35:31'), -(7, 'vexia', 'Fixed inventory disappearing when using deposit box.', '2015-12-13 18:51:16'), -(8, 'vexia', 'Fixed player safety test completion interface.', '2015-12-13 18:51:43'), -(9, 'vexia', 'Fixed falador agility shortcut.', '2015-12-13 18:58:04'), -(10, 'vexia', 'Fixed Goldsmith gauntlets experience reward.', '2015-12-13 18:59:41'), -(11, 'vexia', 'Zamorakian hasta is now a godwars protection item.', '2015-12-13 19:04:15'), -(12, 'vexia', 'Fixed slayer helmet effect.', '2015-12-13 19:11:37'), -(13, 'vexia', 'Duel arena veng bug has been fixed.', '2015-12-13 19:20:05'), -(14, 'vexia', 'Changed steel bolts from 8gp to 150 gp', '2015-12-15 03:52:43'), -(15, 'vexia', 'Removed astral runes from magic shop', '2015-12-15 03:54:13'), -(16, 'vexia', 'Recent activity for profiles now includes when users create threads', '2015-12-15 04:05:03'), -(17, 'vexia', 'Added beginner level tasks for Lumbridge/Draynor diary.', '2015-12-15 06:23:00'), -(18, 'vexia', 'Added medium level tasks for lumbridge/draynor achievement diary.', '2015-12-16 07:46:23'), -(19, 'vexia', 'Finished the Lumbridge Achievement Diary.', '2015-12-17 05:57:38'), -(20, 'vexia', 'Added the explorer rings mechanics.', '2015-12-17 07:15:54'), -(21, 'empathy', 'Added broad arrow making - must unlock via slayer rewards', '2015-12-17 07:19:54'), -(22, 'empathy', 'Added broad bolt making - must unlock via slayer rewards ', '2015-12-17 07:20:54'), -(23, 'empathy', 'Added middle mouse rotation for the client', '2015-12-17 07:22:54'), -(24, 'empathy', 'Added Dagannoth Kings under dagganoth tasks', '2015-12-17 07:29:54'), -(25, 'vexia', 'Added the gilded altar.', '2015-12-18 18:32:52'), -(26, 'vexia', 'Fixed shooting star mining requirements.', '2015-12-18 18:45:10'), -(27, 'vexia', 'Fixed an iron titan bug.', '2015-12-18 18:45:16'), -(28, 'vexia', 'Changed Arios teleporter to 5 seconds.', '2015-12-18 19:06:53'), -(30, 'vexia', 'Added broad-tipped bolts.', '2016-01-01 21:11:36'), -(31, 'vexia', 'Fixed KQ', '2016-01-01 21:11:43'), -(32, 'vexia', 'Fixed KBD slayer task!', '2016-01-01 21:11:49'), -(33, 'vexia', 'Fixed venenatis & callisto safe spots', '2016-01-01 22:16:26'); - -- -------------------------------------------------------- -- @@ -79,43 +44,35 @@ INSERT INTO `dev_log` (`id`, `username`, `content`, `date`) VALUES CREATE TABLE `highscores` ( `id` int(11) UNSIGNED NOT NULL, `username` varchar(20) DEFAULT NULL, - `overall_xp` int(11) NOT NULL DEFAULT '0', - `total_level` int(11) NOT NULL DEFAULT '0', + `overall_xp` int(11) NOT NULL DEFAULT 0, + `total_level` int(11) NOT NULL DEFAULT 0, `ironManMode` varchar(15) NOT NULL DEFAULT 'NONE', - `xp_0` int(11) NOT NULL DEFAULT '0', - `xp_1` int(11) NOT NULL DEFAULT '0', - `xp_2` int(11) NOT NULL DEFAULT '0', - `xp_3` int(11) NOT NULL DEFAULT '0', - `xp_4` int(11) NOT NULL DEFAULT '0', - `xp_5` int(11) NOT NULL DEFAULT '0', - `xp_6` int(11) NOT NULL DEFAULT '0', - `xp_7` int(11) NOT NULL DEFAULT '0', - `xp_8` int(11) NOT NULL DEFAULT '0', - `xp_9` int(11) NOT NULL DEFAULT '0', - `xp_10` int(11) NOT NULL DEFAULT '0', - `xp_11` int(11) NOT NULL DEFAULT '0', - `xp_12` int(11) NOT NULL DEFAULT '0', - `xp_13` int(11) NOT NULL DEFAULT '0', - `xp_14` int(11) NOT NULL DEFAULT '0', - `xp_15` int(11) NOT NULL DEFAULT '0', - `xp_16` int(11) NOT NULL DEFAULT '0', - `xp_17` int(11) NOT NULL DEFAULT '0', - `xp_18` int(11) NOT NULL DEFAULT '0', - `xp_19` int(11) NOT NULL DEFAULT '0', - `xp_20` int(11) NOT NULL DEFAULT '0', - `xp_21` int(11) NOT NULL DEFAULT '0', - `xp_22` int(11) NOT NULL DEFAULT '0', - `xp_23` int(11) NOT NULL DEFAULT '0' + `xp_0` int(11) NOT NULL DEFAULT 0, + `xp_1` int(11) NOT NULL DEFAULT 0, + `xp_2` int(11) NOT NULL DEFAULT 0, + `xp_3` int(11) NOT NULL DEFAULT 0, + `xp_4` int(11) NOT NULL DEFAULT 0, + `xp_5` int(11) NOT NULL DEFAULT 0, + `xp_6` int(11) NOT NULL DEFAULT 0, + `xp_7` int(11) NOT NULL DEFAULT 0, + `xp_8` int(11) NOT NULL DEFAULT 0, + `xp_9` int(11) NOT NULL DEFAULT 0, + `xp_10` int(11) NOT NULL DEFAULT 0, + `xp_11` int(11) NOT NULL DEFAULT 0, + `xp_12` int(11) NOT NULL DEFAULT 0, + `xp_13` int(11) NOT NULL DEFAULT 0, + `xp_14` int(11) NOT NULL DEFAULT 0, + `xp_15` int(11) NOT NULL DEFAULT 0, + `xp_16` int(11) NOT NULL DEFAULT 0, + `xp_17` int(11) NOT NULL DEFAULT 0, + `xp_18` int(11) NOT NULL DEFAULT 0, + `xp_19` int(11) NOT NULL DEFAULT 0, + `xp_20` int(11) NOT NULL DEFAULT 0, + `xp_21` int(11) NOT NULL DEFAULT 0, + `xp_22` int(11) NOT NULL DEFAULT 0, + `xp_23` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `highscores` --- - -INSERT INTO `highscores` (`id`, `username`, `overall_xp`, `total_level`, `ironManMode`, `xp_0`, `xp_1`, `xp_2`, `xp_3`, `xp_4`, `xp_5`, `xp_6`, `xp_7`, `xp_8`, `xp_9`, `xp_10`, `xp_11`, `xp_12`, `xp_13`, `xp_14`, `xp_15`, `xp_16`, `xp_17`, `xp_18`, `xp_19`, `xp_20`, `xp_21`, `xp_22`, `xp_23`) VALUES -(1, 'uim_alex', 36043583, 763, 'ULTIMATE', 8771558, 7195629, 10692629, 8771558, 65600, 237150, 16700, 19500, 68125, 0, 0, 91000, 8780, 0, 79722, 0, 0, 0, 132, 0, 25500, 0, 0, 0), -(2, 'alex', 312962865, 2376, 'NONE', 13093231, 13038431, 13034431, 13065525, 13058831, 13048458, 13038631, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431); - -- -------------------------------------------------------- -- @@ -128,46 +85,46 @@ CREATE TABLE `members` ( `username` varchar(15) DEFAULT NULL, `password` varchar(100) DEFAULT NULL, `salt` varchar(35) DEFAULT NULL, - `rights` int(1) NOT NULL DEFAULT '0', - `email_activated` int(1) NOT NULL DEFAULT '0', - `lastActive` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `donatorType` int(2) NOT NULL DEFAULT '-1', - `donationTotal` double(10,2) NOT NULL DEFAULT '0.00', - `credits` int(5) NOT NULL DEFAULT '0', - `icon` int(2) NOT NULL DEFAULT '0', + `rights` int(1) NOT NULL DEFAULT 0, + `email_activated` int(1) NOT NULL DEFAULT 0, + `lastActive` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `donatorType` int(2) NOT NULL DEFAULT -1, + `donationTotal` double(10,2) NOT NULL DEFAULT 0.00, + `credits` int(5) NOT NULL DEFAULT 0, + `icon` int(2) NOT NULL DEFAULT 0, `perks` varchar(500) NOT NULL DEFAULT '', - `ip` longtext, - `mac` longtext, - `serial` longtext, + `ip` longtext DEFAULT NULL, + `mac` longtext DEFAULT NULL, + `serial` longtext DEFAULT NULL, `computerName` varchar(2000) NOT NULL DEFAULT '', - `monthlyVotes` int(11) NOT NULL DEFAULT '0', - `netWorth` bigint(200) NOT NULL DEFAULT '0', - `forumUID` int(11) NOT NULL DEFAULT '-1', + `monthlyVotes` int(11) NOT NULL DEFAULT 0, + `netWorth` bigint(200) NOT NULL DEFAULT 0, + `forumUID` int(11) NOT NULL DEFAULT -1, `ironManMode` varchar(15) NOT NULL DEFAULT 'NONE', - `bank` longtext, - `inventory` longtext, - `equipment` longtext, - `ge` longtext, - `muteTime` bigint(20) NOT NULL DEFAULT '-1', - `banTime` bigint(20) NOT NULL DEFAULT '-1', - `profileImage` varchar(300) NOT NULL DEFAULT 'http://ariosrsps.com/lib/images/forums/defaultprofile.png', - `contacts` longtext, - `blocked` longtext, - `clanName` varchar(12) NOT NULL DEFAULT '', - `currentClan` varchar(12) NOT NULL DEFAULT 'arios', + `bank` longtext DEFAULT NULL, + `inventory` longtext DEFAULT NULL, + `equipment` longtext DEFAULT NULL, + `ge` longtext DEFAULT NULL, + `muteTime` bigint(20) NOT NULL DEFAULT -1, + `banTime` bigint(20) NOT NULL DEFAULT -1, + `profileImage` varchar(300) DEFAULT NULL, + `contacts` longtext DEFAULT NULL, + `blocked` longtext DEFAULT NULL, + `clanName` varchar(15) NOT NULL DEFAULT '', + `currentClan` varchar(15) DEFAULT NULL, `clanReqs` varchar(10) NOT NULL DEFAULT '1,0,8,9', - `disconnectTime` bigint(20) NOT NULL DEFAULT '0', - `lastWorld` int(3) NOT NULL DEFAULT '-1', + `disconnectTime` bigint(20) NOT NULL DEFAULT 0, + `lastWorld` int(3) NOT NULL DEFAULT -1, `chatSettings` varchar(10) NOT NULL DEFAULT '0,0,0', - `timePlayed` bigint(20) DEFAULT '0', - `lastLogin` bigint(20) NOT NULL DEFAULT '0', + `timePlayed` bigint(20) DEFAULT 0, + `lastLogin` bigint(20) NOT NULL DEFAULT 0, `lastGameIp` varchar(15) DEFAULT '', - `countryCode` int(11) NOT NULL DEFAULT '0', + `countryCode` int(11) NOT NULL DEFAULT 0, `birthday` date DEFAULT NULL, - `online` tinyint(1) NOT NULL DEFAULT '0', - `signature` longtext, + `online` tinyint(1) NOT NULL DEFAULT 0, + `signature` longtext DEFAULT NULL, `joined_date` timestamp NULL DEFAULT NULL, - `posts` int(11) NOT NULL DEFAULT '0' + `posts` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- @@ -175,8 +132,7 @@ CREATE TABLE `members` ( -- INSERT INTO `members` (`UID`, `email`, `username`, `password`, `salt`, `rights`, `email_activated`, `lastActive`, `donatorType`, `donationTotal`, `credits`, `icon`, `perks`, `ip`, `mac`, `serial`, `computerName`, `monthlyVotes`, `netWorth`, `forumUID`, `ironManMode`, `bank`, `inventory`, `equipment`, `ge`, `muteTime`, `banTime`, `profileImage`, `contacts`, `blocked`, `clanName`, `currentClan`, `clanReqs`, `disconnectTime`, `lastWorld`, `chatSettings`, `timePlayed`, `lastLogin`, `lastGameIp`, `countryCode`, `birthday`, `online`, `signature`, `joined_date`, `posts`) VALUES -(1, '', 'alex', '$2a$12$oQz3KDY/4la77lPpYzr2Aupb8NDp5Q8wixAC073w5M18ntt8P8RC2', '$2a$12$oQz3KDY/4la77lPpYzr2Au', 2, 0, '2016-03-26 00:06:56', -1, 0.00, 0, 0, '', '96.254.196.5', 'D4-3D-7E-97-2C-45', 'To be filled by O.E.M.', 'Alex', 0, -1940633227, -1, 'NONE', '14850,1|14851,1|14853,1|7462,10|14636,1|14638,1|14639,1|560,8000|14640,1|14896,1|561,10000|14641,1|14897,1|562,8000|14642,1|14898,1|14643,1|14899,1|14644,1|14900,1|14645,1|14646,1|4151,102|14647,1|14648,1|14649,1|14650,1|14651,1|14652,1|14653,1|14654,1|14655,1|14656,1|14657,2|14658,1|14660,1|14661,1|14662,1|8007,3|14664,1|14666,1|8010,3|14669,1|14671,1|14673,3|14674,5|14675,1|14936,1|14683,1|861,1|13661,1|14958,1|14962,1|14963,1|14964,1|14965,1|373,50|14966,1|14969,1|14970,1|379,20|14971,1|892,992|14972,102|14977,1|14980,1|14726,1|14983,1|14984,1|14985,1|14988,1|14989,1|14990,1|14991,1|7056,25|14992,1|14993,1|14994,101|14484,4|14742,1|14748,1|15004,1|14749,1|15005,1|15006,1|15007,102|14752,1|15008,2|15010,1000|13734,1|15015,50|15016,3|13736,1|14761,1|6570,10|15018,3|14762,1|13738,1|14763,1|15020,2|14764,1|13740,1|14765,1|14766,1|13742,1|14767,4|14768,100|13744,1|14773,2|14774,2|6585,11|14788,3|14792,1|14793,1|14808,1|14809,1|14810,1|14818,1|995,2147483647|14820,1|14821,1|14822,1|14823,1|14827,1|14828,1|14829,1|14830,1|1775,34|2289,25|14839,1|14845,1|14847,1', '', '14484,1', '', -1, -1, 'http://ariosrsps.com/lib/images/forums/defaultprofile.png', '{uim_alex,1}', '', '', 'arios', '1,0,8,9', 1458950814328, 1, '0,0,0', 11590572, 1458950816126, '96.254.196.5', 225, '3895-01-01', 0, NULL, '2016-03-23 00:03:49', 0), -(2, '', 'uim_alex', '$2a$12$m.rN4wsgmiNi6GHnmMNv5uutUpSS9r9f3GFs.E4pxwsn4MFPDsH9W', '$2a$12$m.rN4wsgmiNi6GHnmMNv5u', 0, 0, '2016-03-25 21:18:31', -1, 0.00, 0, 0, '', '96.254.196.5', 'D4-3D-7E-97-2C-45', 'To be filled by O.E.M.', 'Alex', 0, 141601, -1, 'ULTIMATE', '7056,25|2289,25|115,15|133,15|373,50|121,15', '3105,1|3841,1|7458,1|995,16097|1381,1|8010,3|14764,1|556,169|14765,1|558,237|14766,1|590,1|303,1|8880,1|8882,341|1725,1|1438,1', '', '', -1, -1, 'http://ariosrsps.com/lib/images/forums/defaultprofile.png', '{alex,1}', '', '', 'arios', '1,0,8,9', 1458940709765, 1, '0,0,0', 12479841, 1458940711546, '96.254.196.5', 225, '3890-01-01', 0, NULL, '2016-03-23 00:42:58', 0); +(0, '', 'rs_2009', '$2a$12$P0OU2A5S.lEYdkTq5kq3/u1UlfVkMYIS7WWbxsjjeyfxqTDbygpEe', '$2a$12$P0OU2A5S.lEYdkTq5kq3/u', 2, 0, '2019-11-06 00:29:03', 0, 0.00, 0, 0, '', '127.0.0.1', NULL, NULL, 'SERVER', 0, 0, -1, 'STANDARD', NULL, NULL, NULL, NULL, -1, -1, '', '', '', 'Rs 2009', 'rs_2009', '0,0,8,9', 1572999889084, 1, '0,0,0', NULL, 1572999890885, '127.0.0.1', 0, NULL, 0, NULL, NULL, 0); -- -------------------------------------------------------- @@ -190,7 +146,7 @@ CREATE TABLE `messages` ( `recipient` varchar(15) NOT NULL DEFAULT '', `subject` varchar(40) NOT NULL DEFAULT '', `content` longtext NOT NULL, - `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `date` timestamp NOT NULL DEFAULT current_timestamp(), `is_read` tinyint(1) NOT NULL, `s_delete` tinyint(11) NOT NULL, `r_delete` tinyint(1) NOT NULL @@ -206,7 +162,7 @@ CREATE TABLE `perks` ( `product_id` int(10) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL DEFAULT 'No Name', `description` varchar(500) DEFAULT NULL, - `price` int(10) NOT NULL DEFAULT '0' + `price` int(10) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- @@ -226,7 +182,7 @@ INSERT INTO `perks` (`product_id`, `name`, `description`, `price`) VALUES (17, 'Familiar Whisperer', 'Get to know your familiar better by increasing their lifespan by 50%.', 70), (18, 'Barrows Befriender', 'Befriend the barrows brothers & never experience the wretched degrading of their armour again', 300), (19, 'Abyss Befriender', 'Use the power of the abyss to make your Runecrafting pouches undegradable.', 150), -(21, 'Charge Befriender', 'The God''s of the Hero''s guild have blessed you with the power to use your jewerly free of charge.', 250), +(21, 'Charge Befriender', 'The God\'s of the Hero\'s guild have blessed you with the power to use your jewerly free of charge.', 250), (22, 'Golden Needle', 'Gain an extra 10% experience whilst spinning something on a spinning wheel, including flax. Creating an item made out of dragonhide rewards an extra 5% experience. Your crafting needle also never breaks and thread is consumed less often.\n', 50), (24, 'Slayer Betrayer', 'Obtain the ability through the Slayer Masters to change your slayer task at will. Type ::cleartask to use.', 100), (26, 'Thirst Quencher', 'The gods have blessed you with the knowledge of the deserts to gain the skills required to tap into an unlimited water supply.', 30), @@ -237,14 +193,14 @@ INSERT INTO `perks` (`product_id`, `name`, `description`, `price`) VALUES (32, 'Dwarf Befriender', 'Befriended by the dwarfs you now have the ability to use double the cannon balls and experience no decay on your cannon.', 150), (33, 'Powerpoint', 'This perk grants you double the points in all minigames.', 300), (35, 'Charm Collector', 'Through the power of summoning you will automatically pick up any charms dropped in battle.', 100), -(36, 'Detective', 'You now have a solid 10% chance of a clue scroll drop from any monster that drops clues as well as a 50% better chance of super rare rewards such as 3rd age. You''ll also experience a 50% increased chance to obtain more loot.', 250), +(36, 'Detective', 'You now have a solid 10% chance of a clue scroll drop from any monster that drops clues as well as a 50% better chance of super rare rewards such as 3rd age. You\'ll also experience a 50% increased chance to obtain more loot.', 250), (40, 'Overcharge', 'The power from the overcharge lords is given to you. Your Dragonfire Shield will recharge fully every 10 minutes. The time between casts is also reduced by 50%.', 170), (41, 'Unbreakable Crystal', 'This perk allows for your crystal bow to never degrade.', 350), (42, 'Crusader', 'With this perk you will have a 25% chance to double loot the barrows chest.', 100), (43, 'Pet Befriender', 'This perk gives you the ability to double your chances on getting boss/skilling pets!', 100), -(60, 'Bone Crusher', 'Automatically crushes your bones as they''re dropped for prayer experience. Toggle this perk using ::bonecrusher', 100), +(60, 'Bone Crusher', 'Automatically crushes your bones as they\'re dropped for prayer experience. Toggle this perk using ::bonecrusher', 100), (70, 'Runestone Knowledge', 'You are given extended knowledge of the runecrafting skill and can now craft double death, law, cosmic, blood and nature runes.', 200), -(71, 'Coin machine', 'Automatically bank all coins dropped from NPC''s and gives you 25% extra gold. Toggle this perk using ::coinmachine', 150), +(71, 'Coin machine', 'Automatically bank all coins dropped from NPC\'s and gives you 25% extra gold. Toggle this perk using ::coinmachine', 150), (72, 'Fight Cave Fanatic', 'Eliminates the first 25 waves from the tzhaar fight caves.', 50), (73, 'Decanter', 'Zahur will decant your noted potions if you have this perk.', 50); @@ -256,25 +212,17 @@ INSERT INTO `perks` (`product_id`, `name`, `description`, `price`) VALUES CREATE TABLE `player_logs` ( `username` varchar(22) NOT NULL DEFAULT '', - `public_chat` longtext, - `private_chat` longtext, - `clan_chat` longtext, - `address_log` longtext, - `command_log` longtext, - `trade_log` longtext, - `ge_log` longtext, - `duplication_log` longtext, - `duel_log` longtext + `public_chat` longtext DEFAULT NULL, + `private_chat` longtext DEFAULT NULL, + `clan_chat` longtext DEFAULT NULL, + `address_log` longtext DEFAULT NULL, + `command_log` longtext DEFAULT NULL, + `trade_log` longtext DEFAULT NULL, + `ge_log` longtext DEFAULT NULL, + `duplication_log` longtext DEFAULT NULL, + `duel_log` longtext DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `player_logs` --- - -INSERT INTO `player_logs` (`username`, `public_chat`, `private_chat`, `clan_chat`, `address_log`, `command_log`, `trade_log`, `ge_log`, `duplication_log`, `duel_log`) VALUES -('alex', '22/03/2016 20:50:12: a\n22/03/2016 20:54:32: a\n22/03/2016 20:57:25: a\n23/03/2016 00:15:05: a\n23/03/2016 00:16:15: a\n23/03/2016 10:58:38: oo\n23/03/2016 11:11:13: a\n23/03/2016 11:12:42: :item 11784 1\n23/03/2016 15:28:52: a\n23/03/2016 15:38:32: a\n25/03/2016 02:05:12: a\n25/03/2016 12:54:51: a\n25/03/2016 12:57:24: aa\n', '', '', '22/03/2016 20:50:05: 96.254.196.5\n22/03/2016 20:50:05: To be filled by O.E.M.\n22/03/2016 20:50:05: D4-3D-7E-97-2C-45\n22/03/2016 20:54:24: 96.254.196.5\n22/03/2016 20:54:24: To be filled by O.E.M.\n22/03/2016 20:54:24: D4-3D-7E-97-2C-45\n22/03/2016 20:57:17: 96.254.196.5\n22/03/2016 20:57:17: To be filled by O.E.M.\n22/03/2016 20:57:17: D4-3D-7E-97-2C-45\n22/03/2016 20:58:14: 96.254.196.5\n22/03/2016 20:58:14: To be filled by O.E.M.\n22/03/2016 20:58:14: D4-3D-7E-97-2C-45\n23/03/2016 00:13:28: 96.254.196.5\n23/03/2016 00:13:28: To be filled by O.E.M.\n23/03/2016 00:13:28: D4-3D-7E-97-2C-45\n23/03/2016 00:14:30: 96.254.196.5\n23/03/2016 00:14:30: To be filled by O.E.M.\n23/03/2016 00:14:30: D4-3D-7E-97-2C-45\n23/03/2016 10:57:24: 96.254.196.5\n23/03/2016 10:57:24: To be filled by O.E.M.\n23/03/2016 10:57:24: D4-3D-7E-97-2C-45\n23/03/2016 11:03:26: 96.254.196.5\n23/03/2016 11:03:26: To be filled by O.E.M.\n23/03/2016 11:03:26: D4-3D-7E-97-2C-45\n23/03/2016 11:11:08: 96.254.196.5\n23/03/2016 11:11:08: To be filled by O.E.M.\n23/03/2016 11:11:08: D4-3D-7E-97-2C-45\n23/03/2016 15:13:48: 96.254.196.5\n23/03/2016 15:13:48: To be filled by O.E.M.\n23/03/2016 15:13:48: D4-3D-7E-97-2C-45\n23/03/2016 15:58:08: 96.254.196.5\n23/03/2016 15:58:08: To be filled by O.E.M.\n23/03/2016 15:58:08: D4-3D-7E-97-2C-45\n25/03/2016 02:01:15: 96.254.196.5\n25/03/2016 02:01:15: To be filled by O.E.M.\n25/03/2016 02:01:15: D4-3D-7E-97-2C-45\n25/03/2016 02:05:02: 96.254.196.5\n25/03/2016 02:05:02: To be filled by O.E.M.\n25/03/2016 02:05:02: D4-3D-7E-97-2C-45\n25/03/2016 02:06:29: 96.254.196.5\n25/03/2016 02:06:29: To be filled by O.E.M.\n25/03/2016 02:06:29: D4-3D-7E-97-2C-45\n25/03/2016 10:05:04: 96.254.196.5\n25/03/2016 10:05:04: To be filled by O.E.M.\n25/03/2016 10:05:04: D4-3D-7E-97-2C-45\n25/03/2016 12:53:49: 96.254.196.5\n25/03/2016 12:53:49: To be filled by O.E.M.\n25/03/2016 12:53:49: D4-3D-7E-97-2C-45\n25/03/2016 12:57:18: 96.254.196.5\n25/03/2016 12:57:18: To be filled by O.E.M.\n25/03/2016 12:57:18: D4-3D-7E-97-2C-45\n25/03/2016 16:59:34: 96.254.196.5\n25/03/2016 16:59:34: To be filled by O.E.M.\n25/03/2016 16:59:34: D4-3D-7E-97-2C-45\n25/03/2016 19:52:32: 96.254.196.5\n25/03/2016 19:52:32: To be filled by O.E.M.\n25/03/2016 19:52:32: D4-3D-7E-97-2C-45\n', '22/03/2016 20:58:18: master\n22/03/2016 20:58:30: item 995 2147000000\n22/03/2016 20:58:34: item 4152 100\n22/03/2016 20:58:38: item 6585 5\n22/03/2016 20:58:41: item 7462 5\n22/03/2016 20:58:55: item 6570 10\n23/03/2016 11:04:21: item 4151 1\n23/03/2016 11:06:45: to 1241 1250 0\n23/03/2016 11:07:27: to 1303 1327 0\n23/03/2016 11:11:17: tele 1241 1250\n23/03/2016 11:11:57: tele 2205 3055\n23/03/2016 11:12:46: item 11785 1\n23/03/2016 11:12:54: item 861 1\n23/03/2016 11:13:00: item 892 1000\n23/03/2016 11:14:24: tele 2444 9825\n23/03/2016 11:15:28: tele 3736 5809\n23/03/2016 11:17:27: tele 1470 3687\n23/03/2016 11:17:48: tele 3222 3222\n23/03/2016 11:18:18: item 14666 1\n23/03/2016 11:18:37: item 14664 1\n23/03/2016 11:19:13: item 995 10000000\n23/03/2016 11:19:21: item 560 10000\n23/03/2016 11:19:25: item 561 10000\n23/03/2016 11:19:28: item 554 10000\n23/03/2016 11:19:37: item 562 10000\n23/03/2016 11:20:38: item 14839\n23/03/2016 11:20:49: item 14829 1\n23/03/2016 11:21:32: item 14636 1\n23/03/2016 11:21:42: item 14662 1\n23/03/2016 11:21:59: item 14671 1\n23/03/2016 11:22:53: item 14752 1\n23/03/2016 11:23:25: item 14726\n23/03/2016 11:23:45: item 14767\n23/03/2016 11:23:54: tele 0,50,50,62,28\n23/03/2016 11:23:56: tele 0,51,50,10,18\n23/03/2016 11:23:57: tele 0,51,50,18,6\n23/03/2016 11:23:58: tele 0,51,49,26,58\n23/03/2016 11:23:59: tele 0,51,49,30,44\n23/03/2016 11:24:01: tele 0,51,49,28,34\n23/03/2016 15:14:09: item 4151 1\n23/03/2016 15:14:13: item 14958 1\n23/03/2016 15:16:03: item 14821 1\n23/03/2016 15:16:27: item 14822 1\n23/03/2016 15:16:38: item 14827 1\n23/03/2016 15:17:16: item 14748 1\n23/03/2016 15:17:27: item 14749 1\n23/03/2016 15:19:05: item 14845 1\n23/03/2016 15:19:08: item 14846 1\n23/03/2016 15:19:18: item 14847 1\n23/03/2016 15:19:34: item 14851 1\n23/03/2016 15:19:39: item 14853 1\n23/03/2016 15:19:55: item 14850 1\n23/03/2016 15:20:09: item 14693 1\n23/03/2016 15:20:38: item 14638 1\n23/03/2016 15:20:41: item 14639 1\n23/03/2016 15:20:45: item 14640 1\n23/03/2016 15:20:48: item 14641 1\n23/03/2016 15:20:51: item 14642 1\n23/03/2016 15:20:54: item 14643 1\n23/03/2016 15:20:58: item 14644 1\n23/03/2016 15:21:02: item 14645 1\n23/03/2016 15:21:06: item 14646 1\n23/03/2016 15:21:12: item 14647 1\n23/03/2016 15:21:15: item 14648 1\n23/03/2016 15:21:18: item 14649 1\n23/03/2016 15:21:21: item 14650 1\n23/03/2016 15:21:25: item 14651 1\n23/03/2016 15:21:34: item 14652 1\n23/03/2016 15:21:38: item 14653 1\n23/03/2016 15:21:41: item 14654 1\n23/03/2016 15:21:45: item 14655 1\n23/03/2016 15:21:48: item 14656 1\n23/03/2016 15:23:21: empty\n23/03/2016 15:23:29: item 14657 1\n23/03/2016 15:23:33: item 14658 1\n23/03/2016 15:23:37: item 14659 1\n23/03/2016 15:23:45: item 14660 1\n23/03/2016 15:23:47: item 14661 1\n23/03/2016 15:24:00: item 14669 1\n23/03/2016 15:24:06: item 14673 1\n23/03/2016 15:24:43: item 14674 5\n23/03/2016 15:24:46: item 14675 1\n23/03/2016 15:24:49: item 14683 1\n23/03/2016 15:25:07: item 14810 1\n23/03/2016 15:25:14: item 14808 1\n23/03/2016 15:25:18: item 14809 1\n23/03/2016 15:25:27: item 14818 1\n23/03/2016 15:25:37: item 14823 1\n23/03/2016 15:25:44: item 14828 1\n23/03/2016 15:30:22: item 14896 1\n23/03/2016 15:30:28: item 14897 1\n23/03/2016 15:30:36: item 14898 1\n23/03/2016 15:30:38: item 14899 1\n23/03/2016 15:30:49: item 14900 1\n23/03/2016 15:40:36: item 14830 1\n25/03/2016 02:07:06: item 14962 1\n25/03/2016 02:07:10: item 14963 1\n25/03/2016 02:07:13: item 14964 1\n25/03/2016 02:07:19: item 14965 1\n25/03/2016 02:07:26: item 14966 1\n25/03/2016 02:07:35: item 14969 1\n25/03/2016 02:07:40: item 14970 1\n25/03/2016 02:07:43: item 14971 1\n25/03/2016 02:07:48: item 14972 1\n25/03/2016 02:07:51: item 14972 1\n25/03/2016 02:07:55: item 14972 100\n25/03/2016 02:08:00: item 14977 1\n25/03/2016 02:08:09: item 14980 1\n25/03/2016 02:08:15: item 14983 1\n25/03/2016 02:08:18: item 14984 1\n25/03/2016 02:08:29: item 14985 1\n25/03/2016 02:08:34: item 14988 1\n25/03/2016 02:08:37: item 14989 1\n25/03/2016 02:08:40: item 14990 1\n25/03/2016 02:08:42: item 14991 1\n25/03/2016 02:08:45: item 14992 1\n25/03/2016 02:08:48: item 14993 1\n25/03/2016 02:08:59: item 14994 1\n25/03/2016 02:09:03: item 14994 100\n25/03/2016 02:09:11: item 15007 2\n25/03/2016 02:09:15: item 15007 100\n25/03/2016 02:09:22: item 15010 1000\n25/03/2016 02:12:25: item 15015 50\n25/03/2016 02:12:43: item 15008 2\n25/03/2016 02:13:58: item 15004 1\n25/03/2016 02:14:00: item 15005 1\n25/03/2016 02:14:05: item 15006 1\n25/03/2016 02:14:14: item 15016 3\n25/03/2016 02:14:20: item 15018 3\n25/03/2016 02:14:23: item 15020 2\n25/03/2016 02:15:06: item 14936 1\n25/03/2016 02:15:37: item 14820 1\n25/03/2016 02:16:12: item 14792 1\n25/03/2016 02:16:15: item 14793 1\n25/03/2016 02:16:22: item 14788 3\n25/03/2016 02:16:34: item 14773 2\n25/03/2016 02:16:40: item 14774 2\n25/03/2016 02:16:53: item 14768 100\n25/03/2016 02:17:05: item 14767 3\n25/03/2016 02:17:09: item 14761 1\n25/03/2016 02:17:11: item 14762 1\n25/03/2016 02:17:14: item 14763 1\n25/03/2016 02:17:18: ultimatearmour\n25/03/2016 02:18:15: item 14673 2\n25/03/2016 02:19:20: item 14484 5\n25/03/2016 02:19:31: item 7462 5\n25/03/2016 02:19:37: item 6585 6\n25/03/2016 02:21:14: item 13734 1\n25/03/2016 02:21:19: item 13738 1\n25/03/2016 02:21:24: item 13740 1\n25/03/2016 02:21:27: item 14742 1\n25/03/2016 02:21:33: item 13742 1\n25/03/2016 02:21:40: item 13744 1\n25/03/2016 02:21:51: item 13736 1\n25/03/2016 02:22:27: item 13661 1\n25/03/2016 02:22:45: empty\n25/03/2016 12:57:26: npc 1 1\n25/03/2016 12:57:38: npc 8675 1\n25/03/2016 12:57:54: npc 8676 1\n25/03/2016 12:58:05: npc 8677 1\n25/03/2016 12:58:19: npc 8679 1\n25/03/2016 12:58:37: npc 8680 1\n25/03/2016 12:58:50: npc 8681 1\n25/03/2016 12:59:12: npc 8682 1\n25/03/2016 12:59:35: npc 8683 1\n25/03/2016 12:59:46: npc 8484 1\n25/03/2016 12:59:56: npc 8684 1\n25/03/2016 13:00:04: npc 8685 1\n25/03/2016 13:00:24: npc 8686 1\n25/03/2016 13:00:41: npc 8687 1\n25/03/2016 13:00:57: npc 8688 1\n25/03/2016 17:01:48: oskill uim alex 0 99\n25/03/2016 17:01:57: oskill 0 97 uim alex\n25/03/2016 17:03:22: oskill 0 95 uim_alex\n25/03/2016 17:03:52: oskill 1 93 uim_alex\n25/03/2016 17:05:41: oskill 2 97 uim_alex\n25/03/2016 17:06:05: oskill 3 95 uim_alex\n25/03/2016 19:52:53: npc 8679 1\n25/03/2016 19:53:14: npc 8688 1\n', '', '', '22/03/2016 20:58:35: Large networth increase - [incr=2188350000, old=140222, cur=2188490222].\n22/03/2016 20:59:05: Large networth increase - [incr=2224040620, old=140222, cur=2224180842].\n22/03/2016 20:59:23: Large networth increase - [incr=2224040620, old=140222, cur=2224180842].\n23/03/2016 00:13:39: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:13:49: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:14:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:15:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:15:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:16:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:16:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:17:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:17:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:18:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:18:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:19:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:19:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:20:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:20:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:21:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:21:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:22:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:22:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:23:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:23:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:24:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:24:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:25:04: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:57:39: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:58:09: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:58:39: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:58:49: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 11:03:47: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 11:04:17: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 11:04:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:05:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:05:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:06:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:06:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:07:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:07:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:08:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:08:42: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:11:30: Large networth increase - [incr=4294967296, old=-2070325591, cur=2224641705].\n23/03/2016 11:12:00: Large networth increase - [incr=4294967296, old=-2070325591, cur=2224641705].\n23/03/2016 11:12:30: Large networth increase - [incr=4294967296, old=-2070325591, cur=2224641705].\n23/03/2016 11:13:00: Large networth increase - [incr=4294972896, old=-2070325591, cur=2224647305].\n23/03/2016 11:13:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:14:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:14:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:15:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:15:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:16:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:16:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:17:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:17:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:18:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:18:30: Large networth increase - [incr=4295547316, old=-2070325591, cur=2225221725].\n23/03/2016 11:19:00: Large networth increase - [incr=4295615816, old=-2070325591, cur=2225290225].\n23/03/2016 11:19:30: Large networth increase - [incr=4313525816, old=-2070325591, cur=2243200225].\n23/03/2016 11:20:00: Large networth increase - [incr=4313644316, old=-2070325591, cur=2243318725].\n23/03/2016 11:20:30: Large networth increase - [incr=4313644316, old=-2070325591, cur=2243318725].\n23/03/2016 11:21:00: Large networth increase - [incr=4313842316, old=-2070325591, cur=2243516725].\n23/03/2016 11:21:30: Large networth increase - [incr=4313842316, old=-2070325591, cur=2243516725].\n23/03/2016 11:22:00: Large networth increase - [incr=4315132966, old=-2070325591, cur=2244807375].\n23/03/2016 11:22:30: Large networth increase - [incr=4315132966, old=-2070325591, cur=2244807375].\n23/03/2016 11:23:00: Large networth increase - [incr=4315422766, old=-2070325591, cur=2245097175].\n23/03/2016 11:23:30: Large networth increase - [incr=4316422771, old=-2070325591, cur=2246097180].\n23/03/2016 11:24:00: Large networth increase - [incr=4316490778, old=-2070325591, cur=2246165187].\n23/03/2016 11:24:30: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:25:00: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:25:30: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:26:00: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:26:18: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 15:14:00: Large networth increase - [incr=4294967296, old=-2048770693, cur=2246196603].\n23/03/2016 15:14:30: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:15:00: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:15:30: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:16:00: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:16:30: Large networth increase - [incr=4295548161, old=-2048770693, cur=2246777468].\n23/03/2016 15:17:00: Large networth increase - [incr=4295548162, old=-2048770693, cur=2246777469].\n23/03/2016 15:17:30: Large networth increase - [incr=4295788164, old=-2048770693, cur=2247017471].\n23/03/2016 15:18:00: Large networth increase - [incr=4295779392, old=-2048770693, cur=2247008699].\n23/03/2016 15:18:30: Large networth increase - [incr=4295779392, old=-2048770693, cur=2247008699].\n23/03/2016 15:19:00: Large networth increase - [incr=4295779392, old=-2048770693, cur=2247008699].\n23/03/2016 15:19:13: Large networth increase - [incr=4295878392, old=-2048770693, cur=2247107699].\n23/03/2016 15:19:30: Large networth increase - [incr=4295977392, old=-2048770693, cur=2247206699].\n23/03/2016 15:20:00: Large networth increase - [incr=4296642243, old=-2048770693, cur=2247871550].\n23/03/2016 15:20:30: Large networth increase - [incr=4296642243, old=-2048770693, cur=2247871550].\n23/03/2016 15:21:00: Large networth increase - [incr=4296642250, old=-2048770693, cur=2247871557].\n23/03/2016 15:21:30: Large networth increase - [incr=4296642257, old=-2048770693, cur=2247871564].\n23/03/2016 15:22:00: Large networth increase - [incr=4296642262, old=-2048770693, cur=2247871569].\n23/03/2016 15:22:15: Large networth increase - [incr=4287120909, old=-2048770693, cur=2238350216].\n23/03/2016 15:22:30: Large networth increase - [incr=4287120909, old=-2048770693, cur=2238350216].\n23/03/2016 15:23:00: Large networth increase - [incr=4287120967, old=-2048770693, cur=2238350274].\n23/03/2016 15:23:30: Large networth increase - [incr=4296602716, old=-2048770693, cur=2247832023].\n23/03/2016 15:24:00: Large networth increase - [incr=4296700670, old=-2048770693, cur=2247929977].\n23/03/2016 15:24:30: Large networth increase - [incr=4296700680, old=-2048770693, cur=2247929987].\n23/03/2016 15:25:00: Large networth increase - [incr=4297303180, old=-2048770693, cur=2248532487].\n23/03/2016 15:25:30: Large networth increase - [incr=4297303381, old=-2048770693, cur=2248532688].\n23/03/2016 15:26:00: Large networth increase - [incr=4297303383, old=-2048770693, cur=2248532690].\n23/03/2016 15:26:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:27:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:27:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:28:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:28:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:29:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:29:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:30:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:30:30: Large networth increase - [incr=4297300508, old=-2048770693, cur=2248529815].\n23/03/2016 15:31:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:31:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:32:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:32:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:33:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:33:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:34:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:34:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:35:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:35:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:36:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:36:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:37:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:37:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:38:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:38:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:39:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:39:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:40:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:40:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:41:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:41:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:42:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:42:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:43:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:43:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:44:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:44:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:45:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:45:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:46:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:46:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:47:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:47:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:48:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:48:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:49:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:49:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:50:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:50:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:51:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:51:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:51:51: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:58:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 15:58:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 15:59:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 15:59:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:00:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:00:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:01:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:01:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:02:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:02:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:03:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:03:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:04:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:04:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:05:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:05:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:06:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:06:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:07:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:07:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:08:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:08:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:09:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:09:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:10:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:10:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:11:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:11:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:12:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:12:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:13:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:13:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:14:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:14:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:15:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:15:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:16:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:16:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:17:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:17:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:18:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:18:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:19:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:19:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:20:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:20:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:21:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:21:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:22:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:22:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:23:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:23:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:24:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:24:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:25:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:25:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:26:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:26:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:27:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:27:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:28:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:28:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:29:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:29:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:30:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:30:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:31:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:31:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:32:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:32:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:33:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:33:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:34:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:34:24: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:01:34: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:02:04: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:02:15: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:05:14: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:05:44: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:05:49: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:06:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:07:18: Large networth increase - [incr=4295188297, old=-1981014433, cur=2314173864].\n25/03/2016 02:07:48: Large networth increase - [incr=4295692860, old=-1981014433, cur=2314678427].\n25/03/2016 02:08:18: Large networth increase - [incr=4296962366, old=-1981014433, cur=2315947933].\n25/03/2016 02:08:48: Large networth increase - [incr=4297532566, old=-1981014433, cur=2316518133].\n25/03/2016 02:09:18: Large networth increase - [incr=4297538787, old=-1981014433, cur=2316524354].\n25/03/2016 02:09:48: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:10:18: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:10:48: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:11:18: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:11:48: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:12:18: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:12:48: Large networth increase - [incr=4297559989, old=-1981014433, cur=2316545556].\n25/03/2016 02:13:18: Large networth increase - [incr=4297559989, old=-1981014433, cur=2316545556].\n25/03/2016 02:13:48: Large networth increase - [incr=4297559989, old=-1981014433, cur=2316545556].\n25/03/2016 02:14:18: Large networth increase - [incr=4297889993, old=-1981014433, cur=2316875560].\n25/03/2016 02:14:48: Large networth increase - [incr=4298196013, old=-1981014433, cur=2317181580].\n25/03/2016 02:15:18: Large networth increase - [incr=4298316013, old=-1981014433, cur=2317301580].\n25/03/2016 02:15:48: Large networth increase - [incr=4298316014, old=-1981014433, cur=2317301581].\n25/03/2016 02:16:18: Large networth increase - [incr=4298371014, old=-1981014433, cur=2317356581].\n25/03/2016 02:16:48: Large networth increase - [incr=4298482824, old=-1981014433, cur=2317468391].\n25/03/2016 02:17:18: Large networth increase - [incr=4298688851, old=-1981014433, cur=2317674418].\n25/03/2016 02:17:48: Large networth increase - [incr=4298688851, old=-1981014433, cur=2317674418].\n25/03/2016 02:18:18: Large networth increase - [incr=4298688871, old=-1981014433, cur=2317674438].\n25/03/2016 02:18:48: Large networth increase - [incr=4298688871, old=-1981014433, cur=2317674438].\n25/03/2016 02:19:18: Large networth increase - [incr=4298688871, old=-1981014433, cur=2317674438].\n25/03/2016 02:19:48: Large networth increase - [incr=4335351555, old=-1981014433, cur=2354337122].\n25/03/2016 02:20:18: Large networth increase - [incr=4335351555, old=-1981014433, cur=2354337122].\n25/03/2016 02:20:48: Large networth increase - [incr=4335351555, old=-1981014433, cur=2354337122].\n25/03/2016 02:21:18: Large networth increase - [incr=4335421555, old=-1981014433, cur=2354407122].\n25/03/2016 02:21:48: Large networth increase - [incr=4343466555, old=-1981014433, cur=2362452122].\n25/03/2016 02:22:18: Large networth increase - [incr=4344866555, old=-1981014433, cur=2363852122].\n25/03/2016 02:22:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:23:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:23:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:24:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:24:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:25:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:25:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:26:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:26:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:27:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:27:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:28:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:28:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:29:20: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 10:05:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:05:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:06:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:06:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:07:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:07:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:08:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:08:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:09:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:09:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:10:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:10:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:11:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:11:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:12:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:12:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:13:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:54:20: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:54:50: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:55:20: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:55:50: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:56:20: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:56:50: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:56:53: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:57:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:58:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:58:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:59:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:59:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:00:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:00:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:01:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:01:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:02:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:02:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:03:06: Large networth increase - [incr=4294967295, old=-1940633227, cur=2354334068].\n25/03/2016 13:03:37: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 16:59:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:00:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:00:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:01:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:01:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:02:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:02:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:03:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:03:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:04:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:04:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:05:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:05:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:06:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:06:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:07:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:07:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:08:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:08:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:09:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:09:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:10:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:10:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:11:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:11:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:12:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:12:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:13:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:13:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:14:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:14:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:15:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:15:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:16:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:16:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:17:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:17:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:18:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:18:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:19:08: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:52:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:53:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:53:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:54:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:54:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:55:14: Large networth increase - [incr=4294967295, old=-1940633227, cur=2354334068].\n25/03/2016 19:55:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:56:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:56:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:57:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:57:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:58:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:58:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:59:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:59:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:00:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:00:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:01:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:01:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:02:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:02:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:03:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:03:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:04:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:04:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:05:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:05:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:06:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:06:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:06:56: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n', ''), -('uim_alex', '22/03/2016 20:43:13: a\n23/03/2016 00:08:13: a\n23/03/2016 11:28:55: oo\n23/03/2016 11:29:00: cant even bank niqqa\n23/03/2016 13:43:48: yea\n24/03/2016 23:04:13: a\n25/03/2016 17:13:25: oo\n', '', '', '22/03/2016 20:43:03: 96.254.196.5\n22/03/2016 20:43:03: To be filled by O.E.M.\n22/03/2016 20:43:03: D4-3D-7E-97-2C-45\n22/03/2016 21:00:30: 96.254.196.5\n22/03/2016 21:00:30: To be filled by O.E.M.\n22/03/2016 21:00:30: D4-3D-7E-97-2C-45\n22/03/2016 21:46:43: 96.254.196.5\n22/03/2016 21:46:43: To be filled by O.E.M.\n22/03/2016 21:46:43: D4-3D-7E-97-2C-45\n22/03/2016 22:02:01: 96.254.196.5\n22/03/2016 22:02:01: To be filled by O.E.M.\n22/03/2016 22:02:01: D4-3D-7E-97-2C-45\n23/03/2016 00:06:22: 96.254.196.5\n23/03/2016 00:06:22: To be filled by O.E.M.\n23/03/2016 00:06:22: D4-3D-7E-97-2C-45\n23/03/2016 00:07:33: 96.254.196.5\n23/03/2016 00:07:33: To be filled by O.E.M.\n23/03/2016 00:07:33: D4-3D-7E-97-2C-45\n23/03/2016 08:16:12: 96.254.196.5\n23/03/2016 08:16:12: To be filled by O.E.M.\n23/03/2016 08:16:12: D4-3D-7E-97-2C-45\n23/03/2016 11:28:37: 96.254.196.5\n23/03/2016 11:28:37: To be filled by O.E.M.\n23/03/2016 11:28:37: D4-3D-7E-97-2C-45\n23/03/2016 13:24:24: 96.254.196.5\n23/03/2016 13:24:24: To be filled by O.E.M.\n23/03/2016 13:24:24: D4-3D-7E-97-2C-45\n24/03/2016 23:00:51: 96.254.196.5\n24/03/2016 23:00:51: To be filled by O.E.M.\n24/03/2016 23:00:51: D4-3D-7E-97-2C-45\n25/03/2016 16:57:31: 96.254.196.5\n25/03/2016 16:57:31: To be filled by O.E.M.\n25/03/2016 16:57:31: D4-3D-7E-97-2C-45\n', '22/03/2016 22:02:12: ultimatearmour\n', '', '', '', ''); - -- -------------------------------------------------------- -- @@ -296,132 +244,9 @@ CREATE TABLE `security` ( `id` int(11) UNSIGNED NOT NULL, `ip` longtext NOT NULL, `type` int(11) NOT NULL, - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP + `timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `security` --- - -INSERT INTO `security` (`id`, `ip`, `type`, `timestamp`) VALUES -(1, '127.0.0.1', 1, '2016-03-23 00:31:58'), -(2, '127.0.0.1', 2, '2016-03-23 00:32:14'), -(3, '127.0.0.1', 2, '2016-03-23 00:32:20'), -(4, '127.0.0.1', 2, '2016-03-23 00:32:26'), -(5, '127.0.0.1', 1, '2016-03-23 00:32:35'), -(6, '127.0.0.1', 1, '2016-03-23 00:32:40'), -(7, '127.0.0.1', 1, '2016-03-23 00:32:40'), -(8, '127.0.0.1', 1, '2016-03-23 00:32:49'), -(9, '127.0.0.1', 1, '2016-03-23 00:32:51'), -(10, '127.0.0.1', 1, '2016-03-23 00:32:51'), -(11, '127.0.0.1', 1, '2016-03-23 00:33:00'), -(12, '192.168.1.4', 1, '2016-03-23 00:38:03'), -(13, '192.168.1.4', 1, '2016-03-23 00:38:55'), -(14, '192.168.1.4', 1, '2016-03-23 00:38:57'), -(15, '192.168.1.4', 1, '2016-03-23 00:39:38'), -(16, '192.168.1.4', 2, '2016-03-23 00:39:42'), -(17, '192.168.1.4', 1, '2016-03-23 00:39:44'), -(18, '192.168.1.4', 1, '2016-03-23 00:39:46'), -(19, '192.168.1.4', 2, '2016-03-23 00:39:54'), -(20, '192.168.1.4', 2, '2016-03-23 00:39:57'), -(21, '192.168.1.4', 1, '2016-03-23 00:42:22'), -(22, '192.168.1.4', 1, '2016-03-23 00:43:20'), -(23, '192.168.1.4', 2, '2016-03-23 00:43:21'), -(24, '192.168.1.4', 2, '2016-03-23 00:43:29'), -(25, '192.168.1.4', 2, '2016-03-23 00:43:31'), -(26, '192.168.1.4', 1, '2016-03-23 00:54:42'), -(27, '192.168.1.4', 1, '2016-03-23 00:59:33'), -(28, '192.168.1.4', 2, '2016-03-23 00:59:35'), -(29, '192.168.1.4', 1, '2016-03-23 00:59:39'), -(30, '192.168.1.4', 1, '2016-03-23 00:59:41'), -(31, '192.168.1.4', 2, '2016-03-23 00:59:47'), -(32, '192.168.1.4', 2, '2016-03-23 00:59:50'), -(33, '192.168.1.4', 2, '2016-03-23 00:59:55'), -(34, '192.168.1.4', 2, '2016-03-23 00:59:56'), -(35, '192.168.1.4', 2, '2016-03-23 01:00:03'), -(36, '192.168.1.4', 1, '2016-03-23 01:45:19'), -(37, '192.168.1.4', 2, '2016-03-23 01:45:22'), -(38, '192.168.1.4', 2, '2016-03-23 01:45:24'), -(39, '192.168.1.4', 2, '2016-03-23 01:45:25'), -(40, '192.168.1.4', 2, '2016-03-23 01:46:55'), -(41, '192.168.1.4', 1, '2016-03-23 01:47:04'), -(42, '186.222.2.208', 1, '2016-03-23 01:47:04'), -(43, '192.168.1.4', 2, '2016-03-23 01:49:28'), -(44, '184.105.247.195', 1, '2016-03-23 02:36:41'), -(45, '127.0.0.1', 1, '2016-03-23 02:58:42'), -(46, '127.0.0.1', 1, '2016-03-23 02:58:44'), -(47, '127.0.0.1', 2, '2016-03-23 02:58:47'), -(48, '127.0.0.1', 2, '2016-03-23 02:58:54'), -(49, '127.0.0.1', 2, '2016-03-23 02:59:01'), -(50, '127.0.0.1', 2, '2016-03-23 02:59:03'), -(51, '127.0.0.1', 2, '2016-03-23 02:59:07'), -(52, '127.0.0.1', 2, '2016-03-23 03:10:16'), -(53, '127.0.0.1', 2, '2016-03-23 03:10:18'), -(54, '127.0.0.1', 2, '2016-03-23 03:10:19'), -(55, '192.168.1.4', 1, '2016-03-23 04:06:09'), -(56, '192.168.1.4', 1, '2016-03-23 04:06:11'), -(57, '192.168.1.4', 2, '2016-03-23 04:06:13'), -(58, '127.0.0.1', 1, '2016-03-23 12:34:21'), -(59, '127.0.0.1', 1, '2016-03-23 12:34:25'), -(60, '127.0.0.1', 2, '2016-03-23 12:34:28'), -(61, '127.0.0.1', 1, '2016-03-23 14:59:05'), -(62, '127.0.0.1', 1, '2016-03-23 14:59:11'), -(63, '127.0.0.1', 2, '2016-03-23 14:59:14'), -(64, '127.0.0.1', 2, '2016-03-23 14:59:16'), -(65, '127.0.0.1', 2, '2016-03-23 14:59:32'), -(66, '127.0.0.1', 2, '2016-03-23 14:59:37'), -(67, '127.0.0.1', 2, '2016-03-23 14:59:38'), -(68, '127.0.0.1', 2, '2016-03-23 14:59:44'), -(69, '127.0.0.1', 2, '2016-03-23 14:59:45'), -(70, '127.0.0.1', 2, '2016-03-23 14:59:57'), -(71, '127.0.0.1', 2, '2016-03-23 14:59:59'), -(72, '127.0.0.1', 1, '2016-03-23 15:00:59'), -(73, '127.0.0.1', 1, '2016-03-23 15:00:59'), -(74, '127.0.0.1', 1, '2016-03-23 15:01:07'), -(75, '127.0.0.1', 1, '2016-03-23 15:01:09'), -(76, '127.0.0.1', 1, '2016-03-23 15:01:20'), -(77, '127.0.0.1', 1, '2016-03-23 15:01:25'), -(78, '127.0.0.1', 1, '2016-03-23 15:01:25'), -(79, '127.0.0.1', 1, '2016-03-23 15:01:28'), -(80, '127.0.0.1', 1, '2016-03-23 15:01:28'), -(81, '127.0.0.1', 1, '2016-03-23 15:01:30'), -(82, '127.0.0.1', 2, '2016-03-23 15:01:42'), -(83, '127.0.0.1', 1, '2016-03-23 15:34:51'), -(84, '127.0.0.1', 2, '2016-03-23 15:34:53'), -(85, '127.0.0.1', 2, '2016-03-23 15:34:55'), -(86, '95.110.143.69', 1, '2016-03-23 20:15:46'), -(87, '66.249.66.130', 1, '2016-03-25 03:34:11'), -(88, '66.249.66.130', 1, '2016-03-25 03:36:48'), -(89, '66.249.66.130', 1, '2016-03-25 03:36:49'), -(90, '66.249.66.190', 1, '2016-03-25 03:37:22'), -(91, '66.249.66.190', 1, '2016-03-25 03:37:22'), -(92, '66.249.66.130', 1, '2016-03-25 03:38:20'), -(93, '66.249.66.130', 1, '2016-03-25 03:38:20'), -(94, '66.249.66.190', 1, '2016-03-25 03:39:12'), -(95, '179.96.23.6', 1, '2016-03-25 06:24:54'), -(96, '180.76.15.156', 1, '2016-03-25 14:22:58'), -(97, '178.64.31.84', 1, '2016-03-25 16:05:46'), -(98, '54.208.125.234', 1, '2016-03-25 17:45:37'), -(99, '54.208.125.234', 1, '2016-03-25 17:45:38'), -(100, '54.208.125.234', 1, '2016-03-25 17:45:40'), -(101, '187.85.96.60', 1, '2016-03-25 18:57:34'), -(102, '76.195.103.3', 1, '2016-03-25 19:39:32'), -(103, '127.0.0.1', 1, '2016-03-25 20:44:36'), -(104, '192.168.1.4', 1, '2016-03-25 20:44:45'), -(105, '192.168.1.4', 1, '2016-03-25 20:45:16'), -(106, '192.168.1.4', 2, '2016-03-25 20:45:18'), -(107, '192.168.1.4', 2, '2016-03-25 20:45:18'), -(108, '192.168.1.4', 2, '2016-03-25 20:55:29'), -(109, '192.168.1.4', 2, '2016-03-25 20:55:31'), -(110, '192.168.1.4', 2, '2016-03-25 20:55:33'), -(111, '192.168.1.4', 2, '2016-03-25 20:55:37'), -(112, '192.168.1.4', 2, '2016-03-25 20:55:40'), -(113, '192.168.1.4', 2, '2016-03-25 20:55:41'), -(114, '127.0.0.1', 1, '2016-03-25 21:14:41'), -(115, '127.0.0.1', 1, '2016-03-25 21:14:50'), -(116, '127.0.0.1', 2, '2016-03-25 21:14:52'), -(117, '179.215.124.123', 1, '2016-03-25 22:53:35'); - -- -------------------------------------------------------- -- @@ -432,7 +257,7 @@ CREATE TABLE `sys_logs` ( `id` int(11) UNSIGNED NOT NULL, `message` longtext NOT NULL, `log_type` int(2) DEFAULT NULL, - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), `IP_ADDRESS` varchar(30) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -446,8 +271,8 @@ CREATE TABLE `validations` ( `id` int(11) UNSIGNED NOT NULL, `username` varchar(20) DEFAULT NULL, `code` varchar(30) DEFAULT NULL, - `type` int(2) NOT NULL DEFAULT '0', - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `type` int(2) NOT NULL DEFAULT 0, + `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), `value` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -461,7 +286,7 @@ CREATE TABLE `votes` ( `id` int(11) NOT NULL, `username` varchar(50) NOT NULL DEFAULT '', `site` varchar(50) NOT NULL, - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP + `timestamp` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- @@ -472,23 +297,13 @@ CREATE TABLE `votes` ( CREATE TABLE `voting_sites` ( `name` varchar(20) NOT NULL DEFAULT 'Null', - `wait` int(5) NOT NULL DEFAULT '12', - `credits` int(2) NOT NULL DEFAULT '1', + `wait` int(5) NOT NULL DEFAULT 12, + `credits` int(2) NOT NULL DEFAULT 1, `link` varchar(500) NOT NULL DEFAULT 'http://ariosrsps.com', `get_command` varchar(20) NOT NULL DEFAULT '', `host_name` varchar(500) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `voting_sites` --- - -INSERT INTO `voting_sites` (`name`, `wait`, `credits`, `link`, `get_command`, `host_name`) VALUES -('rune-server', 24, 1, 'http://ariosrsps.com', 'data', ''), -('runelocus', 12, 1, 'http://ariosrsps.com', 'usr', ''), -('top-100-arena', 12, 1, 'http://ariosrsps.com', 'postback', ''), -('topg', 12, 1, 'http://ariosrsps.com', 'p_resp', 'monitor.topg.org'); - -- -------------------------------------------------------- -- @@ -498,11 +313,11 @@ INSERT INTO `voting_sites` (`name`, `wait`, `credits`, `link`, `get_command`, `h CREATE TABLE `worlds` ( `world` int(2) UNSIGNED NOT NULL, `ip` varchar(20) NOT NULL DEFAULT '127.0.0.1', - `players` int(5) NOT NULL DEFAULT '0', - `country` int(1) NOT NULL DEFAULT '0', + `players` int(5) NOT NULL DEFAULT 0, + `country` int(1) NOT NULL DEFAULT 0, `member` int(11) NOT NULL, - `revision` int(3) NOT NULL DEFAULT '530', - `lastResponse` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP + `revision` int(3) NOT NULL DEFAULT 530, + `lastResponse` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- @@ -510,7 +325,7 @@ CREATE TABLE `worlds` ( -- INSERT INTO `worlds` (`world`, `ip`, `players`, `country`, `member`, `revision`, `lastResponse`) VALUES -(1, '127.0.0.1', 0, 22, 1, 530, '2016-03-26 00:07:00'); +(1, '127.0.0.1', 0, 22, 1, 530, '2019-11-06 00:24:54'); -- -- Indexes for dumped tables @@ -597,46 +412,56 @@ ALTER TABLE `worlds` -- ALTER TABLE `dev_log` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; + -- -- AUTO_INCREMENT for table `highscores` -- ALTER TABLE `highscores` - MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + -- -- AUTO_INCREMENT for table `members` -- ALTER TABLE `members` - MODIFY `UID` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + MODIFY `UID` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `messages` -- ALTER TABLE `messages` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `perks` -- ALTER TABLE `perks` MODIFY `product_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74; + -- -- AUTO_INCREMENT for table `security` -- ALTER TABLE `security` - MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; + MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `sys_logs` -- ALTER TABLE `sys_logs` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `validations` -- ALTER TABLE `validations` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `votes` -- ALTER TABLE `votes` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; +COMMIT; + /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/CompiledServer/production/09Scape/key.cfg b/CompiledServer/production/09Scape/key.cfg deleted file mode 100644 index d25a6c446..000000000 --- a/CompiledServer/production/09Scape/key.cfg +++ /dev/null @@ -1 +0,0 @@ -40bd001563085fc35165329ea1ff5c5ecbdbbeef \ No newline at end of file diff --git a/CompiledServer/production/09Scape/org/crandor/Server.class b/CompiledServer/production/09Scape/org/crandor/Server.class index 1b1e90714..2b9066844 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/Server.class and b/CompiledServer/production/09Scape/org/crandor/Server.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/ServerConstants.class b/CompiledServer/production/09Scape/org/crandor/ServerConstants.class index 46ac99b81..b9854b074 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/ServerConstants.class and b/CompiledServer/production/09Scape/org/crandor/ServerConstants.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/Util.class b/CompiledServer/production/09Scape/org/crandor/Util.class new file mode 100644 index 000000000..8f38d73ee Binary files /dev/null and b/CompiledServer/production/09Scape/org/crandor/Util.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/container/impl/BankContainer.class b/CompiledServer/production/09Scape/org/crandor/game/container/impl/BankContainer.class index b92a670aa..c02956779 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/container/impl/BankContainer.class and b/CompiledServer/production/09Scape/org/crandor/game/container/impl/BankContainer.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/dialogue/DialogueInterpreter.class b/CompiledServer/production/09Scape/org/crandor/game/content/dialogue/DialogueInterpreter.class index d1186422b..16b052c49 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/dialogue/DialogueInterpreter.class and b/CompiledServer/production/09Scape/org/crandor/game/content/dialogue/DialogueInterpreter.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/global/action/DropItemHandler.class b/CompiledServer/production/09Scape/org/crandor/game/content/global/action/DropItemHandler.class index 996bc6e08..526ffc0aa 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/global/action/DropItemHandler.class and b/CompiledServer/production/09Scape/org/crandor/game/content/global/action/DropItemHandler.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/global/consumable/CookingProperties.class b/CompiledServer/production/09Scape/org/crandor/game/content/global/consumable/CookingProperties.class index b400c700f..e8ca9e3ac 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/global/consumable/CookingProperties.class and b/CompiledServer/production/09Scape/org/crandor/game/content/global/consumable/CookingProperties.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/Skills.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/Skills.class index 30940850e..c742cf46e 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/Skills.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/Skills.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class index b7a1b63e4..66614d6a8 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class index 061751392..4dd964ce0 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class index e453008c7..ea37a5278 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class index 97f12ced1..0af76ef5e 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class index 3aa6b843a..6496f2198 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class index 06d898b5d..5c9235c12 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class index 54ac93986..0e76e426b 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class index eede43ffe..981ce4351 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class index f96d64501..02ee8a0ec 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/fishing/FishingPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/fishing/FishingPulse.class index 3924e0b58..3272d4248 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/fishing/FishingPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/fishing/FishingPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class index 08fd26c2a..8052c41a0 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/SkillingResource.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/SkillingResource.class index 9da1c1bb3..923ee08fa 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/SkillingResource.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/gather/SkillingResource.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class index f2cc632be..1f3ac3239 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/smithing/SmithingPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/smithing/SmithingPulse.class index 89c497bd5..c44342e72 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/smithing/SmithingPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/free/smithing/SmithingPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class index 2e32484b6..5cc9f75ab 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class index 02a5548c1..c9cb1c35d 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse.class index 95096dbed..5fb54d804 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/fletching/FletchingPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class index d51525d46..4fb7c1407 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerblorePulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerblorePulse.class index 3b128600d..5a20481b0 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerblorePulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/herblore/HerblorePulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class index 4f13cdebe..6d03cac7f 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class index 200263389..0a0d573de 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class index 1cafd2541..54e1345b2 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Pickpocket.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Pickpocket.class index 2ed8d1b25..c2b4de321 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Pickpocket.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Pickpocket.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class index 6b6550570..b5458568f 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Stall.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Stall.class index ba4d80bac..079d18e63 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Stall.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/Stall.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class index b43bedf55..783bcb8c7 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class and b/CompiledServer/production/09Scape/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEvent.class b/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEvent.class index bac72523c..984df9581 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEvent.class and b/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEvent.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager$1.class b/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager$1.class index 4c1d4a6d3..01aa30e2c 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager$1.class and b/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager$1.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager.class b/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager.class index eaa1d12ad..0ac781560 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager.class and b/CompiledServer/production/09Scape/org/crandor/game/events/GlobalEventManager.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/npc/drop/NPCDropTables.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/npc/drop/NPCDropTables.class index f42703cd5..386f59a72 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/npc/drop/NPCDropTables.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/npc/drop/NPCDropTables.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/AIPlayer.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/AIPlayer.class index 0c05863e6..0846187cd 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/AIPlayer.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/AIPlayer.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class index 4f25ce498..ece037030 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class index 2ac0c5135..d27a6b64a 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class index b26dff3ba..4ec086bdf 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class index f59d8428f..a8f6ad051 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/PlayerParser.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/PlayerParser.class index bce59a7c1..7e02f4845 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/PlayerParser.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/login/PlayerParser.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/portal/Perks.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/portal/Perks.class index d700af9b1..addeda6e8 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/portal/Perks.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/info/portal/Perks.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/link/GlobalData.class b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/link/GlobalData.class index 58e7b8902..924ae106d 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/link/GlobalData.class and b/CompiledServer/production/09Scape/org/crandor/game/node/entity/player/link/GlobalData.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/node/item/GroundItemManager.class b/CompiledServer/production/09Scape/org/crandor/game/node/item/GroundItemManager.class index 4ac03a1af..b83200acd 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/node/item/GroundItemManager.class and b/CompiledServer/production/09Scape/org/crandor/game/node/item/GroundItemManager.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/system/communication/CommunicationInfo.class b/CompiledServer/production/09Scape/org/crandor/game/system/communication/CommunicationInfo.class index 761f877ae..7dfbbd501 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/system/communication/CommunicationInfo.class and b/CompiledServer/production/09Scape/org/crandor/game/system/communication/CommunicationInfo.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/system/mysql/SQLManager.class b/CompiledServer/production/09Scape/org/crandor/game/system/mysql/SQLManager.class index fa82f3dd5..9dfdfab9e 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/system/mysql/SQLManager.class and b/CompiledServer/production/09Scape/org/crandor/game/system/mysql/SQLManager.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/system/script/ScriptCompiler.class b/CompiledServer/production/09Scape/org/crandor/game/system/script/ScriptCompiler.class index 50d39a244..713ccf8ca 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/system/script/ScriptCompiler.class and b/CompiledServer/production/09Scape/org/crandor/game/system/script/ScriptCompiler.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/world/GameSettings.class b/CompiledServer/production/09Scape/org/crandor/game/world/GameSettings.class index 11572702f..a4baed404 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/world/GameSettings.class and b/CompiledServer/production/09Scape/org/crandor/game/world/GameSettings.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/world/GameWorld.class b/CompiledServer/production/09Scape/org/crandor/game/world/GameWorld.class index d8236de55..f5dffe30d 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/world/GameWorld.class and b/CompiledServer/production/09Scape/org/crandor/game/world/GameWorld.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/game/world/callback/CallbackHub.class b/CompiledServer/production/09Scape/org/crandor/game/world/callback/CallbackHub.class index 45f7f5ff5..ed4a903bc 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/game/world/callback/CallbackHub.class and b/CompiledServer/production/09Scape/org/crandor/game/world/callback/CallbackHub.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab$1.class b/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab$1.class index fbd469c70..ae1ad8afe 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab$1.class and b/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab$1.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab.class b/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab.class index 859e2c011..0963b28f1 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab.class and b/CompiledServer/production/09Scape/org/crandor/gui/tab/PlayerTab.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class b/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class index 4810267f2..f57803a16 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class and b/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab.class b/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab.class index 89a1194c9..869d100c5 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab.class and b/CompiledServer/production/09Scape/org/crandor/gui/tab/StatisticsTab.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/net/amsc/MSPacketRepository.class b/CompiledServer/production/09Scape/org/crandor/net/amsc/MSPacketRepository.class index b7e714f03..bfabddb6c 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/net/amsc/MSPacketRepository.class and b/CompiledServer/production/09Scape/org/crandor/net/amsc/MSPacketRepository.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/net/packet/in/ReportAbusePacket.class b/CompiledServer/production/09Scape/org/crandor/net/packet/in/ReportAbusePacket.class index 013aca078..746a84667 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/net/packet/in/ReportAbusePacket.class and b/CompiledServer/production/09Scape/org/crandor/net/packet/in/ReportAbusePacket.class differ diff --git a/CompiledServer/production/09Scape/org/crandor/worker/MajorUpdateWorker.class b/CompiledServer/production/09Scape/org/crandor/worker/MajorUpdateWorker.class index 81abdc860..525ed5436 100644 Binary files a/CompiledServer/production/09Scape/org/crandor/worker/MajorUpdateWorker.class and b/CompiledServer/production/09Scape/org/crandor/worker/MajorUpdateWorker.class differ diff --git a/CompiledServer/production/09Scape/org/keldagrim/ServerConstants.class b/CompiledServer/production/09Scape/org/keldagrim/ServerConstants.class index 484c78a1a..5055552ab 100644 Binary files a/CompiledServer/production/09Scape/org/keldagrim/ServerConstants.class and b/CompiledServer/production/09Scape/org/keldagrim/ServerConstants.class differ diff --git a/CompiledServer/production/09Scape/org/keldagrim/launcher/Constants.class b/CompiledServer/production/09Scape/org/keldagrim/launcher/Constants.class index 2dad57481..a203e2e52 100644 Binary files a/CompiledServer/production/09Scape/org/keldagrim/launcher/Constants.class and b/CompiledServer/production/09Scape/org/keldagrim/launcher/Constants.class differ diff --git a/CompiledServer/production/09Scape/org/keldagrim/net/packet/WorldPacketRepository.class b/CompiledServer/production/09Scape/org/keldagrim/net/packet/WorldPacketRepository.class index fb1c65174..3839323a0 100644 Binary files a/CompiledServer/production/09Scape/org/keldagrim/net/packet/WorldPacketRepository.class and b/CompiledServer/production/09Scape/org/keldagrim/net/packet/WorldPacketRepository.class differ diff --git a/CompiledServer/production/09Scape/org/keldagrim/system/communication/CommunicationInfo.class b/CompiledServer/production/09Scape/org/keldagrim/system/communication/CommunicationInfo.class index b17ae2ea8..ad715ce27 100644 Binary files a/CompiledServer/production/09Scape/org/keldagrim/system/communication/CommunicationInfo.class and b/CompiledServer/production/09Scape/org/keldagrim/system/communication/CommunicationInfo.class differ diff --git a/CompiledServer/production/09Scape/org/runite/Client.class b/CompiledServer/production/09Scape/org/runite/Client.class new file mode 100644 index 000000000..d77628d18 Binary files /dev/null and b/CompiledServer/production/09Scape/org/runite/Client.class differ diff --git a/CompiledServer/production/09Scape/org/runite/Configurations.class b/CompiledServer/production/09Scape/org/runite/Configurations.class index a5d4cb197..3ec8e9704 100644 Binary files a/CompiledServer/production/09Scape/org/runite/Configurations.class and b/CompiledServer/production/09Scape/org/runite/Configurations.class differ diff --git a/CompiledServer/production/09Scape/org/runite/GameLaunch.class b/CompiledServer/production/09Scape/org/runite/GameLaunch.class index 362461337..324456c13 100644 Binary files a/CompiledServer/production/09Scape/org/runite/GameLaunch.class and b/CompiledServer/production/09Scape/org/runite/GameLaunch.class differ diff --git a/CompiledServer/production/09Scape/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..d7812e5ab --- /dev/null +++ b/CompiledServer/production/09Scape/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/CompiledServer/production/09Scape/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..683bd2ea1 --- /dev/null +++ b/CompiledServer/production/09Scape/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/CompiledServer/production/09Scape/org/runite/jagex/Class121.class b/CompiledServer/production/09Scape/org/runite/jagex/Class121.class index 435afc87c..566dbbb6b 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/Class121.class and b/CompiledServer/production/09Scape/org/runite/jagex/Class121.class differ diff --git a/CompiledServer/production/09Scape/org/runite/jagex/Class3_Sub13_Sub23.class b/CompiledServer/production/09Scape/org/runite/jagex/Class3_Sub13_Sub23.class index 3fb9acf97..95e2a9052 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/Class3_Sub13_Sub23.class and b/CompiledServer/production/09Scape/org/runite/jagex/Class3_Sub13_Sub23.class differ diff --git a/CompiledServer/production/09Scape/org/runite/jagex/Class53.class b/CompiledServer/production/09Scape/org/runite/jagex/Class53.class index 09a2625db..b6aa43e3c 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/Class53.class and b/CompiledServer/production/09Scape/org/runite/jagex/Class53.class differ diff --git a/CompiledServer/production/09Scape/org/runite/jagex/Client.class b/CompiledServer/production/09Scape/org/runite/jagex/Client.class index 0ef0bfd12..27e806241 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/Client.class and b/CompiledServer/production/09Scape/org/runite/jagex/Client.class differ diff --git a/CompiledServer/production/09Scape/org/runite/jagex/ClientLoader.class b/CompiledServer/production/09Scape/org/runite/jagex/ClientLoader.class index 879a66e7e..916c462eb 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/ClientLoader.class and b/CompiledServer/production/09Scape/org/runite/jagex/ClientLoader.class differ diff --git a/CompiledServer/production/09Scape/org/runite/jagex/GameShell.class b/CompiledServer/production/09Scape/org/runite/jagex/GameShell.class index fd014b953..44c3660ab 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/GameShell.class and b/CompiledServer/production/09Scape/org/runite/jagex/GameShell.class differ diff --git a/CompiledServer/production/09Scape/org/runite/jagex/Signlink.class b/CompiledServer/production/09Scape/org/runite/jagex/Signlink.class index cbdef7553..8a7c23989 100644 Binary files a/CompiledServer/production/09Scape/org/runite/jagex/Signlink.class and b/CompiledServer/production/09Scape/org/runite/jagex/Signlink.class differ diff --git a/CompiledServer/production/09Scape/plugin/activity/pestcontrol/reward/PCRewardInterface.class b/CompiledServer/production/09Scape/plugin/activity/pestcontrol/reward/PCRewardInterface.class index ca271c60b..a7e44a610 100644 Binary files a/CompiledServer/production/09Scape/plugin/activity/pestcontrol/reward/PCRewardInterface.class and b/CompiledServer/production/09Scape/plugin/activity/pestcontrol/reward/PCRewardInterface.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/AIPCommandPlugin.class b/CompiledServer/production/09Scape/plugin/command/AIPCommandPlugin.class index 618fdf498..5692cc527 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/AIPCommandPlugin.class and b/CompiledServer/production/09Scape/plugin/command/AIPCommandPlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/BetaCommandPlugin.class b/CompiledServer/production/09Scape/plugin/command/BetaCommandPlugin.class index d58e538ad..b333bdf73 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/BetaCommandPlugin.class and b/CompiledServer/production/09Scape/plugin/command/BetaCommandPlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$1.class b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$1.class index 31efa88cb..907a668c8 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$1.class and b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$1.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$2.class b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$2.class index 7c272fe0e..d01dcbb5d 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$2.class and b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$2.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$SpawnSearch.class b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$SpawnSearch.class index 723b05834..0af4b91da 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$SpawnSearch.class and b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin$SpawnSearch.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin.class b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin.class index e18bf93e6..8d041b486 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin.class and b/CompiledServer/production/09Scape/plugin/command/DeveloperCommandPlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/PerkCommandPlugin.class b/CompiledServer/production/09Scape/plugin/command/PerkCommandPlugin.class index 94b74ad41..7779a6685 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/PerkCommandPlugin.class and b/CompiledServer/production/09Scape/plugin/command/PerkCommandPlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$1.class b/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$1.class index 4d82e5aae..bcda1949e 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$1.class and b/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$1.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$2.class b/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$2.class index 67d67341a..41cf960cf 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$2.class and b/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin$2.class differ diff --git a/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin.class b/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin.class index 129e94bcf..b8dbabf8f 100644 Binary files a/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin.class and b/CompiledServer/production/09Scape/plugin/command/PlayerCommandPlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/dialogue/PhantuwtiFantstuwiFarSight.class b/CompiledServer/production/09Scape/plugin/dialogue/PhantuwtiFantstuwiFarSight.class index c49d6b671..255b54951 100644 Binary files a/CompiledServer/production/09Scape/plugin/dialogue/PhantuwtiFantstuwiFarSight.class and b/CompiledServer/production/09Scape/plugin/dialogue/PhantuwtiFantstuwiFarSight.class differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class b/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class index 4aa35136b..97af6e168 100644 Binary files a/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class and b/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface.class b/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface.class index 228c21e45..effb1d5e2 100644 Binary files a/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface.class and b/CompiledServer/production/09Scape/plugin/interaction/inter/ExperienceLampInterface.class differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class b/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class index e070ddc09..87ddb2a10 100644 Binary files a/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class and b/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond.class b/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond.class index 1b095c309..47b6192c9 100644 Binary files a/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond.class and b/CompiledServer/production/09Scape/plugin/interaction/item/KeldagrimVotingBond.class differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/object/ThievingGuidePlugin.class b/CompiledServer/production/09Scape/plugin/interaction/object/ThievingGuidePlugin.class index f97fedad0..f69463305 100644 Binary files a/CompiledServer/production/09Scape/plugin/interaction/object/ThievingGuidePlugin.class and b/CompiledServer/production/09Scape/plugin/interaction/object/ThievingGuidePlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin$1.class b/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin$1.class deleted file mode 100644 index d2d7ae5b3..000000000 Binary files a/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin$1.class and /dev/null differ diff --git a/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin.class b/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin.class index 89838cffc..7bbbfd80c 100644 Binary files a/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin.class and b/CompiledServer/production/09Scape/plugin/interaction/player/LoginValidationPlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/tutorial/BasicStarter.class b/CompiledServer/production/09Scape/plugin/tutorial/BasicStarter.class new file mode 100644 index 000000000..94080ca0a Binary files /dev/null and b/CompiledServer/production/09Scape/plugin/tutorial/BasicStarter.class differ diff --git a/CompiledServer/production/09Scape/plugin/tutorial/TutorialCompletionDialogue.class b/CompiledServer/production/09Scape/plugin/tutorial/TutorialCompletionDialogue.class index 5b6c13280..f96b3b675 100644 Binary files a/CompiledServer/production/09Scape/plugin/tutorial/TutorialCompletionDialogue.class and b/CompiledServer/production/09Scape/plugin/tutorial/TutorialCompletionDialogue.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore$1.class b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore$1.class index c5cf29065..94953406d 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore$1.class and b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore$1.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore.class b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore.class index 33ae0a91a..5184cc490 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore.class and b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$CreditStore.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class index a3ec27ab8..cc175fa8b 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class and b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$TeleporterDialogue.class b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$TeleporterDialogue.class index 8dc203b6e..f83bb34ba 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$TeleporterDialogue.class and b/CompiledServer/production/09Scape/plugin/zone/GrandExchangeZone$TeleporterDialogue.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class index 5ff2d2943..be70c2ea1 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class and b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class index d31c0b8c8..5df3c3d83 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class and b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesItemHandler.class b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesItemHandler.class index 4f94b2b1d..cec287047 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesItemHandler.class and b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$PilesItemHandler.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class index abc23d5c6..3e371950c 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class and b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class index 54f80e0e1..8f016ea38 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class and b/CompiledServer/production/09Scape/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class differ diff --git a/CompiledServer/production/09Scape/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class b/CompiledServer/production/09Scape/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class index cd1d54173..c3769efc3 100644 Binary files a/CompiledServer/production/09Scape/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class and b/CompiledServer/production/09Scape/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class differ diff --git a/CompiledServer/production/09Scape/rebel.xml b/CompiledServer/production/09Scape/rebel.xml index 2961dc19c..e1ca8c0a4 100644 --- a/CompiledServer/production/09Scape/rebel.xml +++ b/CompiledServer/production/09Scape/rebel.xml @@ -2,7 +2,7 @@ - + diff --git a/CompiledServer/production/09Scape/replay_pid3824.log b/CompiledServer/production/09Scape/replay_pid3824.log deleted file mode 100644 index 6d3e4f35f..000000000 --- a/CompiledServer/production/09Scape/replay_pid3824.log +++ /dev/null @@ -1,548 +0,0 @@ -JvmtiExport can_access_local_variables 0 -JvmtiExport can_hotswap_or_post_breakpoint 0 -JvmtiExport can_post_on_exceptions 0 -# 127 ciObject found -ciMethod java/lang/Object ()V 4097 1 21822 0 -1 -ciMethod java/lang/String ([CII)V 2985 1 647 0 -1 -ciMethod java/lang/AbstractStringBuilder (I)V 1025 1 216 0 -1 -ciMethod java/lang/AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder; 1761 1 407 0 -1 -ciMethod java/lang/AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder; 0 0 2 0 -1 -ciMethod java/lang/StringBuilder ()V 897 1 162 0 -1 -ciMethod java/lang/StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder; 1641 1 341 0 -1 -ciMethod java/lang/StringBuilder append (I)Ljava/lang/StringBuilder; 0 0 2 0 -1 -ciMethod java/lang/StringBuilder toString ()Ljava/lang/String; 921 1 174 0 -1 -ciMethodData java/lang/Object ()V 2 21822 orig 264 8 177 236 96 0 0 0 0 104 4 142 21 0 0 0 0 32 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 241 153 2 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0 -ciMethodData java/lang/StringBuilder ()V 1 162 orig 264 8 177 236 96 0 0 0 0 80 48 149 21 0 0 0 0 48 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 0 0 0 145 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 3 0 0 0 0 0 data 2 0x30002 0x32 oops 0 -ciMethodData java/lang/AbstractStringBuilder (I)V 1 216 orig 264 8 177 236 96 0 0 0 0 120 246 148 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 193 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 2 0x10002 0x58 oops 0 -ciMethodData java/lang/StringBuilder append (I)Ljava/lang/StringBuilder; 1 2 orig 264 8 177 236 96 0 0 0 0 216 55 149 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x2 oops 0 -ciMethodData java/lang/AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder; 1 2 orig 264 8 177 236 96 0 0 0 0 72 9 149 21 0 0 0 0 24 2 0 0 152 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 200 0 0 0 255 255 255 255 7 0 3 0 0 0 0 0 data 25 0x30007 0x2 0x50 0x0 0x90005 0x0 0x0 0x0 0x0 0x0 0x100007 0x2 0x48 0x0 0x150002 0x0 0x1a0003 0x0 0x28 0x1e0002 0x2 0x2b0002 0x2 0x340002 0x2 oops 0 -ciMethodData java/lang/StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder; 1 341 orig 264 8 177 236 96 0 0 0 0 72 51 149 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 205 0 0 0 65 4 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x88 oops 0 -ciMethodData java/lang/AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder; 1 407 orig 264 8 177 236 96 0 0 0 0 24 1 149 21 0 0 0 0 240 1 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 220 0 0 0 217 5 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 9 0 2 0 0 0 160 0 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 20 0x10007 0xbb 0x30 0x0 0x50002 0x0 0xa0005 0x80 0x22c9ce0 0x3b 0x0 0x0 0x150002 0xbb 0x230005 0x80 0x22c9ce0 0x3b 0x0 0x0 oops 2 8 java/lang/String 16 java/lang/String -ciMethodData java/lang/StringBuilder toString ()Ljava/lang/String; 1 174 orig 264 8 177 236 96 0 0 0 0 104 70 149 21 0 0 0 0 48 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 0 0 0 217 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 13 0 0 0 0 0 data 2 0xd0002 0x3b oops 0 -ciMethodData java/lang/String ([CII)V 1 647 orig 264 8 177 236 96 0 0 0 0 120 48 142 21 0 0 0 0 80 2 0 0 208 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 1 0 0 145 8 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 14 0 2 0 0 0 240 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 30 0x10002 0x112 0x50007 0x112 0x30 0x0 0xd0002 0x0 0x120007 0x112 0x70 0x0 0x160007 0x0 0x30 0x0 0x1e0002 0x0 0x250007 0x0 0x20 0x0 0x370007 0x112 0x30 0x0 0x410002 0x0 0x4b0002 0x112 oops 0 -ciMethod java/io/DataInput readFully ([BII)V 0 0 1 0 -1 -ciMethod java/io/DataInput readUnsignedShort ()I 0 0 1 0 -1 -ciMethod java/io/DataInputStream readFully ([BII)V 1009 1009 126 0 -1 -ciMethod java/io/DataInputStream readUnsignedShort ()I 1009 1 126 0 -1 -ciMethod java/io/DataInputStream readUTF (Ljava/io/DataInput;)Ljava/lang/String; 1009 16385 126 0 -1 -ciMethodData java/io/DataInputStream readUTF (Ljava/io/DataInput;)Ljava/lang/String; 1 2048 orig 264 8 177 236 96 0 0 0 0 80 100 181 21 0 0 0 0 40 7 0 0 112 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 224 5 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 188 0x10005 0x0 0x0 0x0 0x0 0x0 0xc0004 0x0 0x0 0x0 0x0 0x0 0xf0007 0x0 0x88 0x0 0x130004 0x0 0x0 0x0 0x0 0x0 0x1f0007 0x0 0x20 0x0 0x420003 0x0 0x18 0x570005 0x0 0x0 0x0 0x0 0x0 0x5f0007 0x0 0x70 0x0 0x700007 0x0 0x38 0x0 0x730003 0x0 0x30 0x830003 0x0 0xffffffffffffffa8 0x890007 0x0 0x448 0x0 0x9a0008 0x20 0x0 0x378 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x378 0x0 0x378 0x0 0x378 0x0 0x378 0x0 0x128 0x0 0x128 0x0 0x240 0xf10003 0x0 0xfffffffffffffed0 0xfa0007 0x0 0x30 0x0 0x1030002 0x0 0x1180007 0x0 0xd0 0x0 0x1230002 0x0 0x1280005 0x0 0x0 0x0 0x0 0x0 0x12d0005 0x0 0x0 0x0 0x0 0x0 0x1300005 0x0 0x0 0x0 0x0 0x0 0x1330002 0x0 0x14d0003 0x0 0xfffffffffffffdb8 0x1560007 0x0 0x30 0x0 0x15f0002 0x0 0x17c0007 0x0 0x40 0x0 0x1880007 0x0 0xd0 0x0 0x1930002 0x0 0x1980005 0x0 0x0 0x0 0x0 0x0 0x19f0005 0x0 0x0 0x0 0x0 0x0 0x1a20005 0x0 0x0 0x0 0x0 0x0 0x1a50002 0x0 0x1ca0003 0x0 0xfffffffffffffc80 0x1d50002 0x0 0x1da0005 0x0 0x0 0x0 0x0 0x0 0x1df0005 0x0 0x0 0x0 0x0 0x0 0x1e20005 0x0 0x0 0x0 0x0 0x0 0x1e50002 0x0 0x1f10002 0x0 oops 0 -ciMethodData java/io/DataInputStream readUnsignedShort ()I 1 126 orig 264 8 177 236 96 0 0 0 0 232 91 181 21 0 0 0 0 216 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 126 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 144 0 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 18 0x40005 0x0 0x0 0x0 0x0 0x0 0xc0005 0x0 0x0 0x0 0x0 0x0 0x130007 0x0 0x30 0x0 0x1a0002 0x0 oops 0 -ciMethodData java/io/DataInputStream readFully ([BII)V 1 126 orig 264 8 177 236 96 0 0 0 0 200 87 181 21 0 0 0 0 40 2 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 126 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 200 0 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 25 0x10007 0x0 0x30 0x0 0x80002 0x0 0x120007 0x0 0x98 0x0 0x220005 0x0 0x0 0x0 0x0 0x0 0x290007 0x0 0x30 0x0 0x300002 0x0 0x3b0003 0x0 0xffffffffffffff80 oops 0 -instanceKlass java/io/DataInput -instanceKlass sun/util/calendar/ZoneInfoFile$1 -instanceKlass sun/util/calendar/ZoneInfoFile -instanceKlass sun/util/calendar/CalendarSystem -instanceKlass java/util/TimeZone -instanceKlass java/util/Locale$1 -instanceKlass java/text/AttributedCharacterIterator$Attribute -instanceKlass java/text/Format -instanceKlass org/keldagrim/game/system/SystemLogger -instanceKlass org/keldagrim/tools/TimeStamp -instanceKlass java/util/concurrent/Executors$DefaultThreadFactory -instanceKlass java/util/concurrent/ThreadFactory -instanceKlass java/util/concurrent/LinkedBlockingQueue$Node -instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject -instanceKlass java/util/concurrent/locks/Condition -instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node -instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer -instanceKlass java/util/concurrent/BlockingQueue -instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy -instanceKlass java/util/concurrent/RejectedExecutionHandler -instanceKlass java/util/concurrent/AbstractExecutorService -instanceKlass java/util/concurrent/ExecutorService -instanceKlass java/util/concurrent/Executors -instanceKlass java/util/concurrent/ConcurrentLinkedQueue$Node -instanceKlass java/util/Queue -instanceKlass org/keldagrim/net/packet/Context -instanceKlass org/keldagrim/game/world/update/UpdateSequence -instanceKlass java/util/concurrent/Executor -instanceKlass org/keldagrim/worker/MajorUpdateWorker -instanceKlass org/keldagrim/game/world/GameWorld -instanceKlass java/util/Properties$LineReader -instanceKlass org/keldagrim/game/world/GameSettings -instanceKlass java/lang/Void -instanceKlass java/lang/Class$MethodArray -instanceKlass sun/launcher/LauncherHelper$FXHelper -instanceKlass org/keldagrim/App -instanceKlass java/io/FilePermission$1 -instanceKlass sun/net/www/MessageHeader -instanceKlass java/net/URLConnection -instanceKlass java/security/PermissionCollection -instanceKlass sun/nio/ch/DirectBuffer -instanceKlass sun/misc/PerfCounter$CoreCounters -instanceKlass sun/misc/Perf -instanceKlass sun/misc/Perf$GetPerfAction -instanceKlass sun/misc/PerfCounter -instanceKlass sun/nio/ByteBuffered -instanceKlass java/lang/Package -instanceKlass sun/misc/Resource -instanceKlass sun/nio/cs/ThreadLocalCoders$Cache -instanceKlass sun/nio/cs/ThreadLocalCoders -instanceKlass java/util/zip/ZipFile$1 -instanceKlass sun/misc/JavaUtilZipFileAccess -instanceKlass java/util/zip/ZipFile -instanceKlass java/util/zip/ZipConstants -instanceKlass sun/misc/URLClassPath$Loader -instanceKlass sun/misc/URLClassPath$3 -instanceKlass sun/net/util/URLUtil -instanceKlass java/net/URLClassLoader$1 -instanceKlass java/lang/StringCoding$StringDecoder -instanceKlass java/io/FileOutputStream$1 -instanceKlass java/lang/StringCoding$StringEncoder -instanceKlass java/lang/ThreadLocal$ThreadLocalMap -instanceKlass java/lang/StringCoding -instanceKlass sun/usagetracker/UsageTrackerClient$3 -instanceKlass java/util/TreeMap$Entry -instanceKlass java/lang/ProcessEnvironment$CheckedEntry -instanceKlass java/util/HashMap$HashIterator -instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1 -instanceKlass java/util/NavigableMap -instanceKlass java/util/SortedMap -instanceKlass java/util/Collections$UnmodifiableMap -instanceKlass java/lang/ProcessEnvironment$EntryComparator -instanceKlass java/lang/ProcessEnvironment$NameComparator -instanceKlass sun/usagetracker/UsageTrackerClient$2 -instanceKlass sun/usagetracker/UsageTrackerClient$4 -instanceKlass sun/usagetracker/UsageTrackerClient$1 -instanceKlass java/util/concurrent/atomic/AtomicBoolean -instanceKlass sun/usagetracker/UsageTrackerClient -instanceKlass sun/misc/PostVMInitHook -instanceKlass java/lang/invoke/MethodHandleStatics$1 -instanceKlass java/lang/invoke/MethodHandleStatics -instanceKlass java/lang/invoke/MemberName$Factory -instanceKlass java/lang/ClassValue$Version -instanceKlass java/lang/ClassValue$Identity -instanceKlass java/lang/ClassValue -instanceKlass java/lang/invoke/MethodHandleImpl$3 -instanceKlass java/lang/invoke/MethodHandleImpl$2 -instanceKlass java/util/function/Function -instanceKlass java/lang/invoke/MethodHandleImpl$1 -instanceKlass java/lang/invoke/MethodHandleImpl -instanceKlass java/lang/SystemClassLoaderAction -instanceKlass sun/misc/Launcher$AppClassLoader$1 -instanceKlass sun/misc/URLClassPath -instanceKlass java/security/Principal -instanceKlass java/security/ProtectionDomain$Key -instanceKlass java/security/ProtectionDomain$2 -instanceKlass sun/misc/JavaSecurityProtectionDomainAccess -instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl -instanceKlass sun/misc/JavaSecurityAccess -instanceKlass java/net/URLStreamHandler -instanceKlass java/net/Parts -instanceKlass java/util/BitSet -instanceKlass sun/net/www/ParseUtil -instanceKlass java/io/FileInputStream$1 -instanceKlass sun/util/locale/LocaleUtils -instanceKlass java/util/Locale$LocaleKey -instanceKlass sun/util/locale/BaseLocale$Key -instanceKlass sun/util/locale/BaseLocale -instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView -instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell -instanceKlass java/util/concurrent/ConcurrentHashMap$Node -instanceKlass java/util/concurrent/locks/ReentrantLock -instanceKlass java/util/concurrent/locks/Lock -instanceKlass java/util/concurrent/ConcurrentMap -instanceKlass sun/util/locale/LocaleObjectCache -instanceKlass java/util/Locale -instanceKlass java/lang/reflect/Array -instanceKlass java/nio/charset/CoderResult$Cache -instanceKlass java/nio/charset/CoderResult -instanceKlass java/nio/charset/CharsetDecoder -instanceKlass sun/nio/cs/ArrayDecoder -instanceKlass java/io/Reader -instanceKlass java/lang/Readable -instanceKlass sun/misc/MetaIndex -instanceKlass sun/misc/Launcher$ExtClassLoader$1 -instanceKlass java/util/StringTokenizer -instanceKlass java/net/URLClassLoader$7 -instanceKlass sun/misc/JavaNetAccess -instanceKlass java/lang/ClassLoader$ParallelLoaders -instanceKlass sun/security/util/Debug -instanceKlass sun/misc/Launcher$Factory -instanceKlass java/net/URLStreamHandlerFactory -instanceKlass java/lang/Compiler$1 -instanceKlass java/lang/Compiler -instanceKlass java/lang/System$2 -instanceKlass sun/misc/JavaLangAccess -instanceKlass sun/io/Win32ErrorMode -instanceKlass sun/misc/OSEnvironment -instanceKlass java/lang/CharacterData -instanceKlass java/lang/Integer$IntegerCache -instanceKlass sun/misc/NativeSignalHandler -instanceKlass sun/misc/Signal -instanceKlass java/lang/Terminator$1 -instanceKlass sun/misc/SignalHandler -instanceKlass java/lang/Terminator -instanceKlass java/lang/ClassLoader$NativeLibrary -instanceKlass java/io/ExpiringCache$Entry -instanceKlass java/lang/ClassLoader$3 -instanceKlass java/nio/file/Path -instanceKlass java/nio/file/Watchable -instanceKlass java/lang/Enum -instanceKlass java/io/ExpiringCache -instanceKlass java/io/FileSystem -instanceKlass java/io/DefaultFileSystem -instanceKlass sun/security/reward/GetPropertyAction -instanceKlass java/nio/Bits$1 -instanceKlass sun/misc/JavaNioAccess -instanceKlass java/nio/ByteOrder -instanceKlass java/nio/Bits -instanceKlass java/nio/charset/CodingErrorAction -instanceKlass java/nio/charset/CharsetEncoder -instanceKlass sun/nio/cs/ArrayEncoder -instanceKlass java/io/Writer -instanceKlass sun/reflect/ReflectionFactory$1 -instanceKlass java/lang/Class$1 -instanceKlass sun/nio/cs/SingleByte -instanceKlass sun/nio/cs/HistoricallyNamedCharset -instanceKlass java/util/Arrays -instanceKlass java/lang/ThreadLocal -instanceKlass java/nio/charset/spi/CharsetProvider -instanceKlass java/nio/charset/Charset -instanceKlass sun/reflect/misc/ReflectUtil -instanceKlass java/lang/reflect/ReflectAccess -instanceKlass sun/reflect/LangReflectAccess -instanceKlass java/lang/reflect/Modifier -instanceKlass sun/reflect/annotation/AnnotationType -instanceKlass java/lang/Class$AnnotationData -instanceKlass sun/reflect/generics/repository/AbstractRepository -instanceKlass java/lang/Class$Atomic -instanceKlass java/lang/Class$ReflectionData -instanceKlass java/lang/Class$3 -instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1 -instanceKlass java/security/PrivilegedExceptionAction -instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater -instanceKlass java/io/OutputStream -instanceKlass java/io/Flushable -instanceKlass java/io/FileDescriptor$1 -instanceKlass sun/misc/JavaIOFileDescriptorAccess -instanceKlass java/io/FileDescriptor -instanceKlass sun/misc/Version -instanceKlass java/lang/Runtime -instanceKlass java/util/Hashtable$Enumerator -instanceKlass java/util/Iterator -instanceKlass java/util/Enumeration -instanceKlass java/util/Objects -instanceKlass java/util/Collections$SynchronizedCollection -instanceKlass java/lang/Math -instanceKlass java/util/Hashtable$Entry -instanceKlass sun/misc/VM -instanceKlass java/util/HashMap$Node -instanceKlass java/util/Map$Entry -instanceKlass sun/reflect/Reflection -instanceKlass sun/misc/SharedSecrets -instanceKlass java/lang/ref/Reference$1 -instanceKlass sun/misc/JavaLangRefAccess -instanceKlass java/lang/ref/ReferenceQueue$Lock -instanceKlass java/lang/ref/ReferenceQueue -instanceKlass java/util/Collections$UnmodifiableCollection -instanceKlass java/util/AbstractMap -instanceKlass java/util/Set -instanceKlass java/util/Collections -instanceKlass java/lang/ref/Reference$Lock -instanceKlass sun/reflect/ReflectionFactory -instanceKlass java/util/AbstractCollection -instanceKlass java/util/RandomAccess -instanceKlass java/util/List -instanceKlass java/util/Collection -instanceKlass java/lang/Iterable -instanceKlass java/security/cert/Certificate -instanceKlass sun/reflect/ReflectionFactory$GetReflectionFactoryAction -instanceKlass java/security/PrivilegedAction -instanceKlass java/security/AccessController -instanceKlass java/security/Permission -instanceKlass java/security/Guard -instanceKlass java/lang/String$CaseInsensitiveComparator -instanceKlass java/util/Comparator -instanceKlass java/io/ObjectStreamField -instanceKlass java/lang/Number -instanceKlass java/lang/Character -instanceKlass java/lang/Boolean -instanceKlass java/nio/Buffer -instanceKlass java/lang/StackTraceElement -instanceKlass java/security/CodeSource -instanceKlass sun/misc/Launcher -instanceKlass java/util/jar/Manifest -instanceKlass java/net/URL -instanceKlass java/io/File -instanceKlass java/io/InputStream -instanceKlass java/io/Closeable -instanceKlass java/lang/AutoCloseable -instanceKlass sun/misc/Unsafe -instanceKlass java/lang/AbstractStringBuilder -instanceKlass java/lang/Appendable -instanceKlass java/lang/invoke/CallSite -instanceKlass java/lang/invoke/MethodType -instanceKlass java/lang/invoke/LambdaForm -instanceKlass java/lang/invoke/MethodHandleNatives -instanceKlass java/lang/invoke/MemberName -instanceKlass java/lang/invoke/MethodHandle -instanceKlass sun/reflect/CallerSensitive -instanceKlass java/lang/annotation/Annotation -instanceKlass sun/reflect/FieldAccessor -instanceKlass sun/reflect/ConstantPool -instanceKlass sun/reflect/ConstructorAccessor -instanceKlass sun/reflect/MethodAccessor -instanceKlass sun/reflect/MagicAccessorImpl -instanceKlass java/lang/reflect/Parameter -instanceKlass java/lang/reflect/Member -instanceKlass java/lang/reflect/AccessibleObject -instanceKlass java/util/Dictionary -instanceKlass java/util/Map -instanceKlass java/lang/ThreadGroup -instanceKlass java/lang/Thread$UncaughtExceptionHandler -instanceKlass java/lang/Thread -instanceKlass java/lang/Runnable -instanceKlass java/lang/ref/Reference -instanceKlass java/security/AccessControlContext -instanceKlass java/security/ProtectionDomain -instanceKlass java/lang/SecurityManager -instanceKlass java/lang/Throwable -instanceKlass java/lang/System -instanceKlass java/lang/ClassLoader -instanceKlass java/lang/Cloneable -instanceKlass java/lang/Class -instanceKlass java/lang/reflect/Type -instanceKlass java/lang/reflect/GenericDeclaration -instanceKlass java/lang/reflect/AnnotatedElement -instanceKlass java/lang/String -instanceKlass java/lang/CharSequence -instanceKlass java/lang/Comparable -instanceKlass java/io/Serializable -ciInstanceKlass java/lang/Object 1 1 75 3 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 100 100 1 1 1 12 12 12 12 12 12 12 12 12 12 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass java/io/Serializable 1 0 5 1 1 100 100 -ciInstanceKlass java/lang/String 1 1 537 3 3 3 3 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 100 100 7 100 100 100 100 100 100 100 100 100 7 100 7 7 100 7 100 100 7 100 7 100 100 100 7 7 100 100 100 7 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 -staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; -staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator -ciInstanceKlass java/lang/Class 1 1 1187 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 8 8 8 8 8 100 100 100 100 100 100 100 7 100 7 100 7 100 100 7 100 7 7 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 100 100 7 100 100 7 7 100 100 100 7 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 7 7 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 1 1 1 -staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; -ciInstanceKlass java/lang/Cloneable 1 0 5 1 1 100 100 -instanceKlass sun/reflect/DelegatingClassLoader -instanceKlass java/security/SecureClassLoader -ciInstanceKlass java/lang/ClassLoader 1 1 839 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 7 100 100 100 100 7 100 100 100 7 7 7 100 7 100 100 100 100 7 7 100 100 7 100 7 7 100 100 100 100 7 100 100 7 7 100 7 7 100 7 100 7 7 100 100 7 7 7 7 100 7 7 100 100 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 1 1 -staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate; -ciInstanceKlass java/lang/System 1 1 366 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 7 100 7 100 100 100 100 100 100 7 7 100 100 7 100 100 7 7 7 7 100 100 100 7 100 100 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 -staticfield java/lang/System in Ljava/io/InputStream; java/io/BufferedInputStream -staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream -staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream -instanceKlass java/lang/Exception -instanceKlass java/lang/Error -ciInstanceKlass java/lang/Throwable 1 1 324 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 7 100 100 100 100 7 7 100 100 100 100 100 100 100 100 100 7 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 1 1 1 -staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; -staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$UnmodifiableRandomAccessList -staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable; -staticfield java/lang/Throwable $assertionsDisabled Z 1 -instanceKlass java/lang/VirtualMachineError -instanceKlass java/lang/LinkageError -instanceKlass java/lang/ThreadDeath -ciInstanceKlass java/lang/Error 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10 -ciInstanceKlass java/lang/ThreadDeath 0 0 15 1 1 1 1 1 1 1 1 5 0 100 100 12 10 -instanceKlass java/io/IOException -instanceKlass java/lang/InterruptedException -instanceKlass java/lang/ReflectiveOperationException -instanceKlass java/lang/RuntimeException -ciInstanceKlass java/lang/Exception 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10 -instanceKlass java/lang/IllegalArgumentException -instanceKlass java/lang/ArithmeticException -instanceKlass java/lang/NullPointerException -instanceKlass java/lang/IllegalMonitorStateException -instanceKlass java/lang/ArrayStoreException -instanceKlass java/lang/ClassCastException -ciInstanceKlass java/lang/RuntimeException 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 100 1 1 12 12 12 12 12 10 10 10 10 10 -ciInstanceKlass java/lang/SecurityManager 0 0 372 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass java/security/ProtectionDomain 1 1 267 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 100 100 100 100 100 100 100 7 7 100 7 7 100 7 7 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 -staticfield java/security/ProtectionDomain debug Lsun/security/util/Debug; null -ciInstanceKlass java/security/AccessControlContext 1 1 302 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 7 100 100 7 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 -instanceKlass java/net/URLClassLoader -ciInstanceKlass java/security/SecureClassLoader 1 1 127 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 7 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield java/security/SecureClassLoader debug Lsun/security/util/Debug; null -instanceKlass java/lang/ClassNotFoundException -ciInstanceKlass java/lang/ReflectiveOperationException 1 1 24 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 12 10 10 10 10 -ciInstanceKlass java/lang/ClassNotFoundException 1 1 29 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 1 1 1 12 12 12 9 10 10 -instanceKlass java/lang/IncompatibleClassChangeError -instanceKlass java/lang/BootstrapMethodError -instanceKlass java/lang/NoClassDefFoundError -ciInstanceKlass java/lang/LinkageError 1 1 21 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 10 10 10 -ciInstanceKlass java/lang/NoClassDefFoundError 0 0 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/ClassCastException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/ArrayStoreException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -instanceKlass java/lang/StackOverflowError -instanceKlass java/lang/OutOfMemoryError -ciInstanceKlass java/lang/VirtualMachineError 1 1 24 1 1 1 1 1 1 1 1 1 1 5 0 100 100 1 12 12 12 12 10 10 10 10 -ciInstanceKlass java/lang/OutOfMemoryError 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/StackOverflowError 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -instanceKlass java/lang/ref/PhantomReference -instanceKlass java/lang/ref/FinalReference -instanceKlass java/lang/ref/WeakReference -instanceKlass java/lang/ref/SoftReference -ciInstanceKlass java/lang/ref/Reference 1 1 131 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 7 7 100 7 7 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 -instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry -ciInstanceKlass java/lang/ref/SoftReference 1 1 32 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 1 1 1 1 12 12 12 12 12 9 9 10 10 10 -instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry -instanceKlass java/lang/ClassValue$Entry -instanceKlass java/util/WeakHashMap$Entry -ciInstanceKlass java/lang/ref/WeakReference 1 1 17 1 1 1 1 1 1 7 100 1 1 1 1 12 12 10 10 -instanceKlass java/lang/ref/Finalizer -ciInstanceKlass java/lang/ref/FinalReference 1 1 13 1 1 1 1 1 100 7 1 1 1 12 10 -instanceKlass sun/misc/Cleaner -ciInstanceKlass java/lang/ref/PhantomReference 1 1 16 1 1 1 1 1 1 1 1 100 100 1 1 1 12 10 -ciInstanceKlass sun/misc/Cleaner 1 1 71 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 11 -staticfield sun/misc/Cleaner dummyQueue Ljava/lang/ref/ReferenceQueue; java/lang/ref/ReferenceQueue -ciInstanceKlass java/lang/ref/Finalizer 1 1 145 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 7 100 7 7 100 100 100 7 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object -instanceKlass java/lang/ref/Finalizer$FinalizerThread -instanceKlass java/lang/ref/Reference$ReferenceHandler -ciInstanceKlass java/lang/Thread 1 1 543 3 3 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 100 100 100 100 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 1 1 1 -staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; -staticfield java/lang/Thread SUBCLASS_IMPLEMENTATION_PERMISSION Ljava/lang/RuntimePermission; java/lang/RuntimePermission -ciInstanceKlass java/lang/ThreadGroup 1 1 265 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 100 100 7 7 100 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -instanceKlass java/util/Hashtable -ciInstanceKlass java/util/Dictionary 1 1 28 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 1 1 1 1 1 1 12 10 -instanceKlass java/util/Properties -ciInstanceKlass java/util/Hashtable 1 1 394 3 3 4 4 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 7 100 100 7 100 7 100 100 100 7 100 7 7 100 7 7 7 100 100 7 7 7 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 -ciInstanceKlass java/util/Properties 1 1 260 3 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 -staticfield java/util/Properties hexDigit [C 16 -instanceKlass java/lang/reflect/Executable -instanceKlass java/lang/reflect/Field -ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 141 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 7 7 100 7 100 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield java/lang/reflect/AccessibleObject ACCESS_PERMISSION Ljava/security/Permission; java/lang/reflect/ReflectPermission -staticfield java/lang/reflect/AccessibleObject reflectionFactory Lsun/reflect/ReflectionFactory; sun/reflect/ReflectionFactory -ciInstanceKlass java/lang/reflect/Field 1 1 359 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 -ciInstanceKlass java/lang/reflect/Parameter 0 0 207 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 -instanceKlass java/lang/reflect/Constructor -instanceKlass java/lang/reflect/Method -ciInstanceKlass java/lang/reflect/Executable 1 1 375 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 1 -ciInstanceKlass java/lang/reflect/Method 1 1 343 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 -ciInstanceKlass java/lang/reflect/Constructor 1 1 327 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 100 100 100 7 7 100 100 100 100 100 7 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 -instanceKlass sun/reflect/FieldAccessorImpl -instanceKlass sun/reflect/ConstructorAccessorImpl -instanceKlass sun/reflect/MethodAccessorImpl -ciInstanceKlass sun/reflect/MagicAccessorImpl 1 1 10 1 1 1 1 1 7 100 12 10 -ciInstanceKlass sun/reflect/MethodAccessorImpl 0 0 19 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 12 10 -instanceKlass sun/reflect/DelegatingConstructorAccessorImpl -instanceKlass sun/reflect/NativeConstructorAccessorImpl -ciInstanceKlass sun/reflect/ConstructorAccessorImpl 1 1 21 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 12 10 -ciInstanceKlass sun/reflect/DelegatingClassLoader 0 0 10 1 1 1 1 100 100 1 12 10 -ciInstanceKlass sun/reflect/ConstantPool 0 0 103 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -instanceKlass sun/reflect/UnsafeFieldAccessorImpl -ciInstanceKlass sun/reflect/FieldAccessorImpl 0 0 53 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 -instanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl -ciInstanceKlass sun/reflect/UnsafeFieldAccessorImpl 0 0 226 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl 0 0 35 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 12 12 12 12 12 9 9 10 10 10 -ciInstanceKlass sun/reflect/CallerSensitive 0 0 15 1 1 1 1 1 1 1 100 100 100 1 1 1 1 -instanceKlass java/lang/invoke/DirectMethodHandle -ciInstanceKlass java/lang/invoke/MethodHandle 1 1 435 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1 -staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20 -staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1 -ciInstanceKlass java/lang/invoke/DirectMethodHandle 0 0 691 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1 1 1 1 1 -ciInstanceKlass java/lang/invoke/MemberName 1 1 641 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 100 100 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 -staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1 -ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 424 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 -staticfield java/lang/invoke/MethodHandleNatives COUNT_GWT Z 1 -staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1 -ciInstanceKlass java/lang/invoke/LambdaForm 0 0 964 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 8 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 1 1 -ciInstanceKlass java/lang/invoke/MethodType 0 0 588 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 1 -ciInstanceKlass java/lang/BootstrapMethodError 0 0 35 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 1 1 12 12 12 12 12 10 10 10 10 10 -instanceKlass java/lang/invoke/VolatileCallSite -instanceKlass java/lang/invoke/MutableCallSite -instanceKlass java/lang/invoke/ConstantCallSite -ciInstanceKlass java/lang/invoke/CallSite 0 0 308 8 8 8 8 8 8 8 8 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -ciInstanceKlass java/lang/invoke/ConstantCallSite 0 0 39 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 12 12 12 12 12 12 9 9 10 10 10 10 10 -ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 54 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 -ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 30 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 12 12 12 12 12 12 10 10 10 10 10 10 -instanceKlass java/lang/StringBuilder -instanceKlass java/lang/StringBuffer -ciInstanceKlass java/lang/AbstractStringBuilder 1 1 309 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 100 100 100 100 7 7 7 100 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 -ciInstanceKlass java/lang/StringBuffer 1 1 369 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 7 7 100 100 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1 -staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; -ciInstanceKlass java/lang/StringBuilder 1 1 323 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 -ciInstanceKlass sun/misc/Unsafe 1 1 386 8 8 7 7 7 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 7 100 100 7 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield sun/misc/Unsafe theUnsafe Lsun/misc/Unsafe; sun/misc/Unsafe -staticfield sun/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1 -staticfield sun/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1 -staticfield sun/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2 -staticfield sun/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2 -staticfield sun/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4 -staticfield sun/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8 -staticfield sun/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4 -staticfield sun/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8 -staticfield sun/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4 -staticfield sun/misc/Unsafe ADDRESS_SIZE I 8 -instanceKlass java/io/FilterInputStream -instanceKlass java/io/FileInputStream -instanceKlass java/io/ByteArrayInputStream -ciInstanceKlass java/io/InputStream 1 1 58 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 5 0 100 100 100 100 100 100 100 7 12 12 12 12 12 10 10 10 10 10 10 10 -ciInstanceKlass java/io/ByteArrayInputStream 1 1 59 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 100 1 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 -ciInstanceKlass java/io/File 1 1 575 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 100 7 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 100 100 7 7 7 100 100 100 100 100 100 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 -staticfield java/io/File fs Ljava/io/FileSystem; java/io/WinNTFileSystem -staticfield java/io/File separatorChar C 92 -staticfield java/io/File separator Ljava/lang/String; "\" -staticfield java/io/File pathSeparatorChar C 59 -staticfield java/io/File pathSeparator Ljava/lang/String; ";" -staticfield java/io/File PATH_OFFSET J 16 -staticfield java/io/File PREFIX_LENGTH_OFFSET J 12 -staticfield java/io/File UNSAFE Lsun/misc/Unsafe; sun/misc/Unsafe -staticfield java/io/File $assertionsDisabled Z 1 -instanceKlass sun/misc/Launcher$ExtClassLoader -instanceKlass sun/misc/Launcher$AppClassLoader -ciInstanceKlass java/net/URLClassLoader 1 1 519 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 100 100 7 7 7 100 100 7 100 100 100 7 7 7 100 100 100 7 7 7 100 100 100 100 100 7 7 100 100 100 7 7 7 7 100 7 100 100 100 7 100 100 100 100 7 7 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 -ciInstanceKlass java/net/URL 1 1 547 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 7 100 100 7 100 100 100 100 100 7 7 100 7 7 100 100 100 100 7 100 100 100 100 7 100 7 100 100 7 7 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField; -ciInstanceKlass java/util/jar/Manifest 1 1 227 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1 -ciInstanceKlass sun/misc/Launcher 1 1 215 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 7 100 7 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1 -ciInstanceKlass sun/misc/Launcher$AppClassLoader 1 1 198 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 7 100 7 100 7 7 100 100 7 100 7 100 7 100 7 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield sun/misc/Launcher$AppClassLoader $assertionsDisabled Z 1 -ciInstanceKlass sun/misc/Launcher$ExtClassLoader 1 1 206 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 7 7 7 7 7 100 7 100 100 100 7 7 7 7 7 7 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -ciInstanceKlass java/security/CodeSource 1 1 319 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 7 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 -ciInstanceKlass java/lang/StackTraceElement 0 0 95 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 -instanceKlass java/nio/LongBuffer -instanceKlass java/nio/CharBuffer -instanceKlass java/nio/ByteBuffer -ciInstanceKlass java/nio/Buffer 1 1 100 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 100 7 100 7 100 100 100 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass java/lang/Boolean 1 1 107 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 7 100 100 100 7 100 7 7 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 -staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean -staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean -staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Character 1 1 456 3 3 3 3 3 3 3 3 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 5 0 5 0 100 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 1 1 -staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class -staticfield java/lang/Character $assertionsDisabled Z 1 -instanceKlass java/util/concurrent/atomic/AtomicLong -instanceKlass java/util/concurrent/atomic/AtomicInteger -instanceKlass java/lang/Long -instanceKlass java/lang/Integer -instanceKlass java/lang/Short -instanceKlass java/lang/Byte -instanceKlass java/lang/Double -instanceKlass java/lang/Float -ciInstanceKlass java/lang/Number 1 1 31 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 12 12 10 10 -ciInstanceKlass java/lang/Float 1 1 166 3 3 3 4 4 4 4 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 4 4 5 0 7 100 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Double 1 1 220 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 5 0 5 0 5 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 7 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Byte 1 1 150 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Short 1 1 156 3 3 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 100 100 100 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Integer 1 1 306 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 100 7 7 100 100 7 7 100 100 100 7 100 100 100 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class -staticfield java/lang/Integer digits [C 36 -staticfield java/lang/Integer DigitTens [C 100 -staticfield java/lang/Integer DigitOnes [C 100 -staticfield java/lang/Integer sizeTable [I 10 -ciInstanceKlass java/lang/Long 1 1 353 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 100 100 7 100 100 7 7 100 7 100 100 100 100 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/NullPointerException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/ArithmeticException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/io/DataInput 1 0 34 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 -ciInstanceKlass java/io/DataInputStream 1 1 154 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 7 100 7 100 100 100 100 100 7 100 100 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 -compile java/io/DataInputStream readUTF (Ljava/io/DataInput;)Ljava/lang/String; -1 3 diff --git a/CompiledServer/production/09Scape/runServer.sh b/CompiledServer/production/09Scape/runServer.sh index c3f3a3d4d..19796f0e4 100755 --- a/CompiledServer/production/09Scape/runServer.sh +++ b/CompiledServer/production/09Scape/runServer.sh @@ -1,3 +1,5 @@ rm -rf org cp -r ../CompiledServer/production/09Scape/org . -java -server -cp ".:./bin;.:./lib/*" org.keldagrim.Server false true false true true +rm -rf plugin/ +cp -r ../CompiledServer/production/09Scape/plugin/ . +java -server -cp ".:./bin;.:./data/libs/*" org.crandor.Server diff --git a/CompiledServer/production/09Scape/server.properties b/CompiledServer/production/09Scape/server.properties index a5d7e3d71..a86078484 100644 --- a/CompiledServer/production/09Scape/server.properties +++ b/CompiledServer/production/09Scape/server.properties @@ -2,7 +2,7 @@ name=Crandor beta=false sql=true devMode=true -gui=true +gui=false gameType=economy worldId=1 country=0 @@ -11,4 +11,4 @@ members=true pvp=false quickChat=true lootshare=true -msip=127.0.0.1 \ No newline at end of file +msip=127.0.0.1 diff --git a/CompiledServer/production/09Scape/server.sql b/CompiledServer/production/09Scape/server.sql index 5bde75e99..4d14184e0 100644 --- a/CompiledServer/production/09Scape/server.sql +++ b/CompiledServer/production/09Scape/server.sql @@ -22,6 +22,16 @@ SET time_zone = "+00:00"; -- -------------------------------------------------------- +-- +-- Table structure for table `global_events` +-- + +CREATE TABLE `global_events` ( + `eventName` varchar(128) NOT NULL, + `eventTime` varchar(128) NOT NULL, + `worldId` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + -- -- Table structure for table `ammo_configs` -- @@ -23619,6 +23629,12 @@ INSERT INTO `staff_accounts` (`username`, `admin`, `serials`, `macs`) VALUES -- Indexes for dumped tables -- +-- +-- Indexes for table `global_events` +-- +ALTER TABLE `global_events` + ADD UNIQUE KEY `world_event` (`eventName`,`worldId`); + -- -- Indexes for table `ammo_configs` -- diff --git a/CompiledServer/production/09Scape/src.rar b/CompiledServer/production/09Scape/src.rar deleted file mode 100644 index 367e92ad6..000000000 Binary files a/CompiledServer/production/09Scape/src.rar and /dev/null differ diff --git a/CompiledServer/production/09Scape/src/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/src/META-INF/MANIFEST.MF index c2c137eb9..d7812e5ab 100644 --- a/CompiledServer/production/09Scape/src/META-INF/MANIFEST.MF +++ b/CompiledServer/production/09Scape/src/META-INF/MANIFEST.MF @@ -1,3 +1,3 @@ -Manifest-Version: 1.0 -Main-Class: org.runite.GameLaunch - +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/CompiledServer/production/09Scape/src/METAs/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/src/METAs/META-INF/MANIFEST.MF new file mode 100644 index 000000000..683bd2ea1 --- /dev/null +++ b/CompiledServer/production/09Scape/src/METAs/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/CompiledServer/production/09Scape/src/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/src/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..d7812e5ab --- /dev/null +++ b/CompiledServer/production/09Scape/src/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/CompiledServer/production/09Scape/src/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF b/CompiledServer/production/09Scape/src/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..683bd2ea1 --- /dev/null +++ b/CompiledServer/production/09Scape/src/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/CompiledServer/production/09Scape/updates.txt b/CompiledServer/production/09Scape/updates.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/CompiledServer/production/Client/META-INF/Client.kotlin_module b/CompiledServer/production/Client/META-INF/Client.kotlin_module new file mode 100644 index 000000000..8fb60192d Binary files /dev/null and b/CompiledServer/production/Client/META-INF/Client.kotlin_module differ diff --git a/CompiledServer/production/Client/org/runite/Client.class b/CompiledServer/production/Client/org/runite/Client.class new file mode 100644 index 000000000..5805c54b9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/Client.class differ diff --git a/CompiledServer/production/Client/org/runite/Configurations.class b/CompiledServer/production/Client/org/runite/Configurations.class new file mode 100644 index 000000000..3ec8e9704 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/Configurations.class differ diff --git a/CompiledServer/production/Client/org/runite/GameLaunch.class b/CompiledServer/production/Client/org/runite/GameLaunch.class new file mode 100644 index 000000000..324456c13 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/GameLaunch.class differ diff --git a/CompiledServer/production/Client/org/runite/GameSetting.class b/CompiledServer/production/Client/org/runite/GameSetting.class new file mode 100644 index 000000000..29665a264 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/GameSetting.class differ diff --git a/CompiledServer/production/Client/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF b/CompiledServer/production/Client/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF new file mode 100644 index 000000000..68ff55e03 --- /dev/null +++ b/CompiledServer/production/Client/org/runite/METAs/liveserver-jar/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/Client/src/META-INF/MANIFEST.MF b/CompiledServer/production/Client/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF similarity index 100% rename from Client/src/META-INF/MANIFEST.MF rename to CompiledServer/production/Client/org/runite/METAs/localhost-jar/META-INF/MANIFEST.MF diff --git a/CompiledServer/production/Client/org/runite/Properties.class b/CompiledServer/production/Client/org/runite/Properties.class new file mode 100644 index 000000000..828997091 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/Properties.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/AbstractIndexedSprite.class b/CompiledServer/production/Client/org/runite/jagex/AbstractIndexedSprite.class new file mode 100644 index 000000000..c3efb022b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/AbstractIndexedSprite.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/AnimationDefinition.class b/CompiledServer/production/Client/org/runite/jagex/AnimationDefinition.class new file mode 100644 index 000000000..36e6907c5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/AnimationDefinition.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/AnimationHeader.class b/CompiledServer/production/Client/org/runite/jagex/AnimationHeader.class new file mode 100644 index 000000000..20e68c7e9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/AnimationHeader.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/CS2Script.class b/CompiledServer/production/Client/org/runite/jagex/CS2Script.class new file mode 100644 index 000000000..885a71bd7 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/CS2Script.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/CacheIndex.class b/CompiledServer/production/Client/org/runite/jagex/CacheIndex.class new file mode 100644 index 000000000..92d5a8326 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/CacheIndex.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Canvas_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Canvas_Sub1.class new file mode 100644 index 000000000..7f6770ce3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Canvas_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Canvas_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Canvas_Sub2.class new file mode 100644 index 000000000..093b5ca2e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Canvas_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class1.class b/CompiledServer/production/Client/org/runite/jagex/Class1.class new file mode 100644 index 000000000..30b72e46c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class10.class b/CompiledServer/production/Client/org/runite/jagex/Class10.class new file mode 100644 index 000000000..cef398ee5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class10.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class100.class b/CompiledServer/production/Client/org/runite/jagex/Class100.class new file mode 100644 index 000000000..88dc52c43 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class100.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class101.class b/CompiledServer/production/Client/org/runite/jagex/Class101.class new file mode 100644 index 000000000..8726aec2a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class101.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class102.class b/CompiledServer/production/Client/org/runite/jagex/Class102.class new file mode 100644 index 000000000..7dd7cf2ef Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class102.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class103.class b/CompiledServer/production/Client/org/runite/jagex/Class103.class new file mode 100644 index 000000000..b534d3463 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class103.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class104.class b/CompiledServer/production/Client/org/runite/jagex/Class104.class new file mode 100644 index 000000000..4c68fcee0 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class104.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class105.class b/CompiledServer/production/Client/org/runite/jagex/Class105.class new file mode 100644 index 000000000..f71e85991 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class105.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class106.class b/CompiledServer/production/Client/org/runite/jagex/Class106.class new file mode 100644 index 000000000..4944402b1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class106.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class107.class b/CompiledServer/production/Client/org/runite/jagex/Class107.class new file mode 100644 index 000000000..c576b51f4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class107.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class108.class b/CompiledServer/production/Client/org/runite/jagex/Class108.class new file mode 100644 index 000000000..bd6f447be Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class108.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class110.class b/CompiledServer/production/Client/org/runite/jagex/Class110.class new file mode 100644 index 000000000..902896d78 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class110.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class112.class b/CompiledServer/production/Client/org/runite/jagex/Class112.class new file mode 100644 index 000000000..d33858a66 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class112.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class113.class b/CompiledServer/production/Client/org/runite/jagex/Class113.class new file mode 100644 index 000000000..76b3b35cf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class113.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class114.class b/CompiledServer/production/Client/org/runite/jagex/Class114.class new file mode 100644 index 000000000..26232defb Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class114.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class115.class b/CompiledServer/production/Client/org/runite/jagex/Class115.class new file mode 100644 index 000000000..15a1861fd Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class115.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class116.class b/CompiledServer/production/Client/org/runite/jagex/Class116.class new file mode 100644 index 000000000..003dbfd0b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class116.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class117.class b/CompiledServer/production/Client/org/runite/jagex/Class117.class new file mode 100644 index 000000000..af23f5b67 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class117.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class118.class b/CompiledServer/production/Client/org/runite/jagex/Class118.class new file mode 100644 index 000000000..cbd9fdbb8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class118.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class118_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class118_Sub1.class new file mode 100644 index 000000000..d36af24b9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class118_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class119.class b/CompiledServer/production/Client/org/runite/jagex/Class119.class new file mode 100644 index 000000000..9606f9d13 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class119.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class12.class b/CompiledServer/production/Client/org/runite/jagex/Class12.class new file mode 100644 index 000000000..ea8806906 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class12.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class120.class b/CompiledServer/production/Client/org/runite/jagex/Class120.class new file mode 100644 index 000000000..451b5d1df Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class120.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class121.class b/CompiledServer/production/Client/org/runite/jagex/Class121.class new file mode 100644 index 000000000..566dbbb6b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class121.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class122.class b/CompiledServer/production/Client/org/runite/jagex/Class122.class new file mode 100644 index 000000000..f3e4fb313 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class122.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class123.class b/CompiledServer/production/Client/org/runite/jagex/Class123.class new file mode 100644 index 000000000..03c9ee8c6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class123.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class124.class b/CompiledServer/production/Client/org/runite/jagex/Class124.class new file mode 100644 index 000000000..8402b5c9e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class124.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class125.class b/CompiledServer/production/Client/org/runite/jagex/Class125.class new file mode 100644 index 000000000..63761318e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class125.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class126.class b/CompiledServer/production/Client/org/runite/jagex/Class126.class new file mode 100644 index 000000000..244642911 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class126.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class127.class b/CompiledServer/production/Client/org/runite/jagex/Class127.class new file mode 100644 index 000000000..f3903ed25 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class127.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class127_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class127_Sub1.class new file mode 100644 index 000000000..dd6179294 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class127_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class128.class b/CompiledServer/production/Client/org/runite/jagex/Class128.class new file mode 100644 index 000000000..a95a0320e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class128.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class129.class b/CompiledServer/production/Client/org/runite/jagex/Class129.class new file mode 100644 index 000000000..2681c84cf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class129.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class129_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class129_Sub1.class new file mode 100644 index 000000000..d58c50777 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class129_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class129_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class129_Sub2.class new file mode 100644 index 000000000..eb90f8a55 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class129_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class130.class b/CompiledServer/production/Client/org/runite/jagex/Class130.class new file mode 100644 index 000000000..d13ea19e4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class130.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class131.class b/CompiledServer/production/Client/org/runite/jagex/Class131.class new file mode 100644 index 000000000..cc9824084 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class131.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class132.class b/CompiledServer/production/Client/org/runite/jagex/Class132.class new file mode 100644 index 000000000..71eb34277 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class132.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class133.class b/CompiledServer/production/Client/org/runite/jagex/Class133.class new file mode 100644 index 000000000..7f7a7a8f4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class133.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class134.class b/CompiledServer/production/Client/org/runite/jagex/Class134.class new file mode 100644 index 000000000..630ec314e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class134.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class135.class b/CompiledServer/production/Client/org/runite/jagex/Class135.class new file mode 100644 index 000000000..618394453 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class135.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class136.class b/CompiledServer/production/Client/org/runite/jagex/Class136.class new file mode 100644 index 000000000..87f6f2f89 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class136.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class137.class b/CompiledServer/production/Client/org/runite/jagex/Class137.class new file mode 100644 index 000000000..0a0cdfbe1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class137.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class139.class b/CompiledServer/production/Client/org/runite/jagex/Class139.class new file mode 100644 index 000000000..cdc6f7e71 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class139.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class14.class b/CompiledServer/production/Client/org/runite/jagex/Class14.class new file mode 100644 index 000000000..c92565c05 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class14.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub1_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub1_Sub1.class new file mode 100644 index 000000000..9cd322f20 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub1_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub1_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub1_Sub2.class new file mode 100644 index 000000000..fa4fc2f94 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub1_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub2.class new file mode 100644 index 000000000..cd5f3be84 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub3.class new file mode 100644 index 000000000..c1fb2d6b2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub4.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub4.class new file mode 100644 index 000000000..77b651bf5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub6.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub6.class new file mode 100644 index 000000000..a26dd3cc2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub6.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class140_Sub7.class b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub7.class new file mode 100644 index 000000000..156b3f1c4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class140_Sub7.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class141.class b/CompiledServer/production/Client/org/runite/jagex/Class141.class new file mode 100644 index 000000000..798be5bd5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class141.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class143.class b/CompiledServer/production/Client/org/runite/jagex/Class143.class new file mode 100644 index 000000000..c3bb427f7 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class143.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class144.class b/CompiledServer/production/Client/org/runite/jagex/Class144.class new file mode 100644 index 000000000..5ea98bfb9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class144.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class144_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class144_Sub1.class new file mode 100644 index 000000000..c503c6629 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class144_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class145.class b/CompiledServer/production/Client/org/runite/jagex/Class145.class new file mode 100644 index 000000000..9bb4009d9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class145.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class146.class b/CompiledServer/production/Client/org/runite/jagex/Class146.class new file mode 100644 index 000000000..02049f318 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class146.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class147.class b/CompiledServer/production/Client/org/runite/jagex/Class147.class new file mode 100644 index 000000000..ecae92ea1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class147.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class15.class b/CompiledServer/production/Client/org/runite/jagex/Class15.class new file mode 100644 index 000000000..daab4cff5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class15.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class150.class b/CompiledServer/production/Client/org/runite/jagex/Class150.class new file mode 100644 index 000000000..8e7a61145 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class150.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class151.class b/CompiledServer/production/Client/org/runite/jagex/Class151.class new file mode 100644 index 000000000..11edcd1a2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class151.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class151_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class151_Sub1.class new file mode 100644 index 000000000..724855efd Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class151_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class152.class b/CompiledServer/production/Client/org/runite/jagex/Class152.class new file mode 100644 index 000000000..28d0cc6d5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class152.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class154.class b/CompiledServer/production/Client/org/runite/jagex/Class154.class new file mode 100644 index 000000000..e3491c6ee Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class154.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class155.class b/CompiledServer/production/Client/org/runite/jagex/Class155.class new file mode 100644 index 000000000..ee29bf18b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class155.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class155_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class155_Sub1.class new file mode 100644 index 000000000..bafbdb126 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class155_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class155_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class155_Sub2.class new file mode 100644 index 000000000..a37effb2f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class155_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class156.class b/CompiledServer/production/Client/org/runite/jagex/Class156.class new file mode 100644 index 000000000..76604f323 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class156.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class157.class b/CompiledServer/production/Client/org/runite/jagex/Class157.class new file mode 100644 index 000000000..1474466ff Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class157.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class158.class b/CompiledServer/production/Client/org/runite/jagex/Class158.class new file mode 100644 index 000000000..e10604ab3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class158.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class158_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class158_Sub1.class new file mode 100644 index 000000000..8e57bf0b9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class158_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class158_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class158_Sub2.class new file mode 100644 index 000000000..284591ead Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class158_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class159.class b/CompiledServer/production/Client/org/runite/jagex/Class159.class new file mode 100644 index 000000000..e1e0a6f94 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class159.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class160.class b/CompiledServer/production/Client/org/runite/jagex/Class160.class new file mode 100644 index 000000000..f4d84f6c2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class160.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class161.class b/CompiledServer/production/Client/org/runite/jagex/Class161.class new file mode 100644 index 000000000..97b3258ba Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class161.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class162.class b/CompiledServer/production/Client/org/runite/jagex/Class162.class new file mode 100644 index 000000000..d0b007610 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class162.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class163.class b/CompiledServer/production/Client/org/runite/jagex/Class163.class new file mode 100644 index 000000000..ab15ded2c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class163.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class163_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub1.class new file mode 100644 index 000000000..b3f8b6469 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class163_Sub1_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub1_Sub1.class new file mode 100644 index 000000000..3bf1c37d4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub1_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class163_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub2.class new file mode 100644 index 000000000..cfb941ee7 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class163_Sub2_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub2_Sub1.class new file mode 100644 index 000000000..6441af71c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub2_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class163_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub3.class new file mode 100644 index 000000000..d04ef386c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class163_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class164.class b/CompiledServer/production/Client/org/runite/jagex/Class164.class new file mode 100644 index 000000000..e58a5c7a2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class164.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class164_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub1.class new file mode 100644 index 000000000..713b9fdcc Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class164_Sub1_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub1_Sub1.class new file mode 100644 index 000000000..fd3282b0b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub1_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class164_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub2.class new file mode 100644 index 000000000..4f161633c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class164_Sub2_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub2_Sub1.class new file mode 100644 index 000000000..79043f31f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class164_Sub2_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class165.class b/CompiledServer/production/Client/org/runite/jagex/Class165.class new file mode 100644 index 000000000..a18f2aabe Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class165.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class166.class b/CompiledServer/production/Client/org/runite/jagex/Class166.class new file mode 100644 index 000000000..3a04653a7 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class166.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class167.class b/CompiledServer/production/Client/org/runite/jagex/Class167.class new file mode 100644 index 000000000..d8d5dd753 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class167.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class168.class b/CompiledServer/production/Client/org/runite/jagex/Class168.class new file mode 100644 index 000000000..1637dd1ab Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class168.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class169.class b/CompiledServer/production/Client/org/runite/jagex/Class169.class new file mode 100644 index 000000000..a21db3757 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class169.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class17.class b/CompiledServer/production/Client/org/runite/jagex/Class17.class new file mode 100644 index 000000000..2a9b0f559 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class17.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class18.class b/CompiledServer/production/Client/org/runite/jagex/Class18.class new file mode 100644 index 000000000..8b507070b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class18.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class19.class b/CompiledServer/production/Client/org/runite/jagex/Class19.class new file mode 100644 index 000000000..0a268b3b2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class19.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class2.class b/CompiledServer/production/Client/org/runite/jagex/Class2.class new file mode 100644 index 000000000..41b55ded6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class20.class b/CompiledServer/production/Client/org/runite/jagex/Class20.class new file mode 100644 index 000000000..9a9d8ff11 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class20.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class21.class b/CompiledServer/production/Client/org/runite/jagex/Class21.class new file mode 100644 index 000000000..0015b8b94 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class21.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class22.class b/CompiledServer/production/Client/org/runite/jagex/Class22.class new file mode 100644 index 000000000..8698df338 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class22.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class23.class b/CompiledServer/production/Client/org/runite/jagex/Class23.class new file mode 100644 index 000000000..150ab9e62 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class23.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class24.class b/CompiledServer/production/Client/org/runite/jagex/Class24.class new file mode 100644 index 000000000..005617515 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class24.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class25.class b/CompiledServer/production/Client/org/runite/jagex/Class25.class new file mode 100644 index 000000000..5b5a2a87c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class25.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class27.class b/CompiledServer/production/Client/org/runite/jagex/Class27.class new file mode 100644 index 000000000..854b57431 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class27.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class29.class b/CompiledServer/production/Client/org/runite/jagex/Class29.class new file mode 100644 index 000000000..b4648133a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class29.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3.class b/CompiledServer/production/Client/org/runite/jagex/Class3.class new file mode 100644 index 000000000..df7209a41 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class30.class b/CompiledServer/production/Client/org/runite/jagex/Class30.class new file mode 100644 index 000000000..26b308bd3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class30.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class31.class b/CompiledServer/production/Client/org/runite/jagex/Class31.class new file mode 100644 index 000000000..ff3a4643a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class31.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class32.class b/CompiledServer/production/Client/org/runite/jagex/Class32.class new file mode 100644 index 000000000..0311b7c3f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class32.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class33.class b/CompiledServer/production/Client/org/runite/jagex/Class33.class new file mode 100644 index 000000000..314684327 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class33.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class34.class b/CompiledServer/production/Client/org/runite/jagex/Class34.class new file mode 100644 index 000000000..4832a6c42 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class34.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class35.class b/CompiledServer/production/Client/org/runite/jagex/Class35.class new file mode 100644 index 000000000..2bb7d3018 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class35.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class36.class b/CompiledServer/production/Client/org/runite/jagex/Class36.class new file mode 100644 index 000000000..614153b5a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class36.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class37.class b/CompiledServer/production/Client/org/runite/jagex/Class37.class new file mode 100644 index 000000000..c4cce21ec Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class37.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class38.class b/CompiledServer/production/Client/org/runite/jagex/Class38.class new file mode 100644 index 000000000..9089d2d2a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class38.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class38_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class38_Sub1.class new file mode 100644 index 000000000..c9b72520f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class38_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class39.class b/CompiledServer/production/Client/org/runite/jagex/Class39.class new file mode 100644 index 000000000..e1974fc72 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class39.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub1.class new file mode 100644 index 000000000..7c667e8de Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub10.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub10.class new file mode 100644 index 000000000..07473678d Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub10.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub11.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub11.class new file mode 100644 index 000000000..676a396b8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub11.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub12.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub12.class new file mode 100644 index 000000000..6d99cb645 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub12.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub12_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub12_Sub1.class new file mode 100644 index 000000000..be7b02d23 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub12_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13.class new file mode 100644 index 000000000..78b869e3c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub1.class new file mode 100644 index 000000000..b193fbbd4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub10.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub10.class new file mode 100644 index 000000000..bfc2ab5c4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub10.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub11.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub11.class new file mode 100644 index 000000000..af66ce793 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub11.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub12.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub12.class new file mode 100644 index 000000000..d01fd2840 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub12.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub13.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub13.class new file mode 100644 index 000000000..cfa710b3b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub13.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub14.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub14.class new file mode 100644 index 000000000..22f62b129 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub14.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub15.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub15.class new file mode 100644 index 000000000..364f6400f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub15.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub16.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub16.class new file mode 100644 index 000000000..e40e40261 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub16.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub17.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub17.class new file mode 100644 index 000000000..d215401e8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub17.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub18.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub18.class new file mode 100644 index 000000000..032104e48 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub18.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub19.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub19.class new file mode 100644 index 000000000..d20631ba8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub19.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub2.class new file mode 100644 index 000000000..8f61e6c65 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub20.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub20.class new file mode 100644 index 000000000..f368fee56 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub20.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub21.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub21.class new file mode 100644 index 000000000..58d30bfc3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub21.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub22.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub22.class new file mode 100644 index 000000000..b48706fa4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub22.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub23.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub23.class new file mode 100644 index 000000000..95e2a9052 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub23.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub23_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub23_Sub1.class new file mode 100644 index 000000000..e48cecee4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub23_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub24.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub24.class new file mode 100644 index 000000000..3b1a6cddc Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub24.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub25.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub25.class new file mode 100644 index 000000000..40598cbbd Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub25.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub26.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub26.class new file mode 100644 index 000000000..bf19104f0 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub26.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub27.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub27.class new file mode 100644 index 000000000..2b23af8c7 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub27.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub28.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub28.class new file mode 100644 index 000000000..2702ac1e6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub28.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub29.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub29.class new file mode 100644 index 000000000..6248672a8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub29.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub3.class new file mode 100644 index 000000000..7e93ffb98 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub30.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub30.class new file mode 100644 index 000000000..f7ada4245 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub30.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub31.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub31.class new file mode 100644 index 000000000..18d1eea7c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub31.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub32.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub32.class new file mode 100644 index 000000000..11e95cecf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub32.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub33.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub33.class new file mode 100644 index 000000000..47a9ca345 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub33.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub34.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub34.class new file mode 100644 index 000000000..5b8b84ea3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub34.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub35.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub35.class new file mode 100644 index 000000000..49a7113d4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub35.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub36.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub36.class new file mode 100644 index 000000000..871ad886c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub36.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub37.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub37.class new file mode 100644 index 000000000..69b4d97c2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub37.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub38.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub38.class new file mode 100644 index 000000000..10d1fafce Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub38.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub39.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub39.class new file mode 100644 index 000000000..4335c1cba Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub39.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub4.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub4.class new file mode 100644 index 000000000..033230433 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub5.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub5.class new file mode 100644 index 000000000..ecb205e9f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub5.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub6.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub6.class new file mode 100644 index 000000000..e0d054b52 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub6.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub7.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub7.class new file mode 100644 index 000000000..861db927c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub7.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub8.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub8.class new file mode 100644 index 000000000..ceaed5f7a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub8.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub9.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub9.class new file mode 100644 index 000000000..a418f4714 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub13_Sub9.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub14.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub14.class new file mode 100644 index 000000000..a3a66c023 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub14.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub15.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub15.class new file mode 100644 index 000000000..4ce9e8916 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub15.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub17.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub17.class new file mode 100644 index 000000000..37a8a3ac3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub17.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub18.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub18.class new file mode 100644 index 000000000..62f2308da Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub18.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub19.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub19.class new file mode 100644 index 000000000..18c1515c4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub19.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub2.class new file mode 100644 index 000000000..4bd416f44 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub20.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub20.class new file mode 100644 index 000000000..2c76bff78 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub20.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub21.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub21.class new file mode 100644 index 000000000..0237ece27 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub21.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub22.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub22.class new file mode 100644 index 000000000..a8845fe0b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub22.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub23.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub23.class new file mode 100644 index 000000000..9f301a58b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub23.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24.class new file mode 100644 index 000000000..065795f5c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub1.class new file mode 100644 index 000000000..d5d3bf227 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub2.class new file mode 100644 index 000000000..d08df6a82 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub3.class new file mode 100644 index 000000000..d4418c69b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub4.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub4.class new file mode 100644 index 000000000..672116185 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub24_Sub4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub25.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub25.class new file mode 100644 index 000000000..bb3e91459 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub25.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub26.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub26.class new file mode 100644 index 000000000..ddd244776 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub26.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub27.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub27.class new file mode 100644 index 000000000..25cf1891b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub27.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub1.class new file mode 100644 index 000000000..e1911eb52 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10.class new file mode 100644 index 000000000..dccc3e9a9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10_Sub1.class new file mode 100644 index 000000000..0c9fbd346 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10_Sub2.class new file mode 100644 index 000000000..a84d9d74f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub10_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub11.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub11.class new file mode 100644 index 000000000..ce9d2e898 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub11.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub12.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub12.class new file mode 100644 index 000000000..213770276 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub12.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub13.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub13.class new file mode 100644 index 000000000..dffdab8ed Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub13.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub14.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub14.class new file mode 100644 index 000000000..65eea5965 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub14.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub15.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub15.class new file mode 100644 index 000000000..00feff873 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub15.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16.class new file mode 100644 index 000000000..d7e4d6b1d Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub1.class new file mode 100644 index 000000000..89efdf7ca Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub1_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub1_Sub1.class new file mode 100644 index 000000000..4e71d0d32 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub1_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub2.class new file mode 100644 index 000000000..765a744c3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub2_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub2_Sub1.class new file mode 100644 index 000000000..dd95843f9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub16_Sub2_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17.class new file mode 100644 index 000000000..6df0d742c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17_Sub1.class new file mode 100644 index 000000000..4302442d8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17_Sub2.class new file mode 100644 index 000000000..31bfe259c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub17_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub18.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub18.class new file mode 100644 index 000000000..ea9e771a5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub18.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub19.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub19.class new file mode 100644 index 000000000..ed65d9c3f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub19.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub2.class new file mode 100644 index 000000000..f25805cf9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub20.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub20.class new file mode 100644 index 000000000..ffc0fa8c8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub20.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub21.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub21.class new file mode 100644 index 000000000..5ad877f95 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub21.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub3.class new file mode 100644 index 000000000..e1f187707 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub4.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub4.class new file mode 100644 index 000000000..b2d29ebcc Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub5.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub5.class new file mode 100644 index 000000000..38fe82481 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub5.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub6.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub6.class new file mode 100644 index 000000000..6eff03ff6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub6.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7.class new file mode 100644 index 000000000..0fe0338bb Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7_Sub1.class new file mode 100644 index 000000000..f821e1fd8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7_Sub2.class new file mode 100644 index 000000000..78d9ba77c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub7_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub8.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub8.class new file mode 100644 index 000000000..99538e234 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub8.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub9.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub9.class new file mode 100644 index 000000000..3dba00a55 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub28_Sub9.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub29.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub29.class new file mode 100644 index 000000000..d8a04f261 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub29.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub3.class new file mode 100644 index 000000000..d65403901 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub30_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub30_Sub1.class new file mode 100644 index 000000000..ae76f5c83 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub30_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub31.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub31.class new file mode 100644 index 000000000..8f51df6d9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub31.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub4.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub4.class new file mode 100644 index 000000000..4602ed2d9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub5.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub5.class new file mode 100644 index 000000000..c3de60864 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub5.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub6.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub6.class new file mode 100644 index 000000000..db23c5c16 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub6.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub7.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub7.class new file mode 100644 index 000000000..a5ab84b2f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub7.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub8.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub8.class new file mode 100644 index 000000000..bc588ac4a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub8.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class3_Sub9.class b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub9.class new file mode 100644 index 000000000..c4a01cfff Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class3_Sub9.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class40.class b/CompiledServer/production/Client/org/runite/jagex/Class40.class new file mode 100644 index 000000000..f6dcbde94 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class40.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class41.class b/CompiledServer/production/Client/org/runite/jagex/Class41.class new file mode 100644 index 000000000..4ebbd2341 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class41.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class42.class b/CompiledServer/production/Client/org/runite/jagex/Class42.class new file mode 100644 index 000000000..fdebb46b6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class42.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class43.class b/CompiledServer/production/Client/org/runite/jagex/Class43.class new file mode 100644 index 000000000..d0989fb52 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class43.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class44.class b/CompiledServer/production/Client/org/runite/jagex/Class44.class new file mode 100644 index 000000000..acac6c7d2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class44.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class45.class b/CompiledServer/production/Client/org/runite/jagex/Class45.class new file mode 100644 index 000000000..16ae48ece Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class45.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class46.class b/CompiledServer/production/Client/org/runite/jagex/Class46.class new file mode 100644 index 000000000..b145a4844 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class46.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class47.class b/CompiledServer/production/Client/org/runite/jagex/Class47.class new file mode 100644 index 000000000..66ef70e41 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class47.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class49.class b/CompiledServer/production/Client/org/runite/jagex/Class49.class new file mode 100644 index 000000000..184a62c9c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class49.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class5.class b/CompiledServer/production/Client/org/runite/jagex/Class5.class new file mode 100644 index 000000000..a5e5c9ce1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class5.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class50.class b/CompiledServer/production/Client/org/runite/jagex/Class50.class new file mode 100644 index 000000000..446159ebb Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class50.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class51.class b/CompiledServer/production/Client/org/runite/jagex/Class51.class new file mode 100644 index 000000000..8aea658e0 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class51.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class52.class b/CompiledServer/production/Client/org/runite/jagex/Class52.class new file mode 100644 index 000000000..aefbfafcf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class52.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class53.class b/CompiledServer/production/Client/org/runite/jagex/Class53.class new file mode 100644 index 000000000..b6aa43e3c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class53.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class54.class b/CompiledServer/production/Client/org/runite/jagex/Class54.class new file mode 100644 index 000000000..5ea2ae984 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class54.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class55.class b/CompiledServer/production/Client/org/runite/jagex/Class55.class new file mode 100644 index 000000000..697db1989 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class55.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class56.class b/CompiledServer/production/Client/org/runite/jagex/Class56.class new file mode 100644 index 000000000..466e8202d Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class56.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class57.class b/CompiledServer/production/Client/org/runite/jagex/Class57.class new file mode 100644 index 000000000..23dcce0d8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class57.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class58.class b/CompiledServer/production/Client/org/runite/jagex/Class58.class new file mode 100644 index 000000000..c7677b476 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class58.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class59.class b/CompiledServer/production/Client/org/runite/jagex/Class59.class new file mode 100644 index 000000000..986a37ca6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class59.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class6.class b/CompiledServer/production/Client/org/runite/jagex/Class6.class new file mode 100644 index 000000000..acada937c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class6.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class60.class b/CompiledServer/production/Client/org/runite/jagex/Class60.class new file mode 100644 index 000000000..f8cf2f1f4 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class60.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class61.class b/CompiledServer/production/Client/org/runite/jagex/Class61.class new file mode 100644 index 000000000..2890666dd Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class61.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class62.class b/CompiledServer/production/Client/org/runite/jagex/Class62.class new file mode 100644 index 000000000..e8bb7a4a0 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class62.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class64.class b/CompiledServer/production/Client/org/runite/jagex/Class64.class new file mode 100644 index 000000000..aa647f4e0 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class64.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class65.class b/CompiledServer/production/Client/org/runite/jagex/Class65.class new file mode 100644 index 000000000..fd7a3566c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class65.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class66.class b/CompiledServer/production/Client/org/runite/jagex/Class66.class new file mode 100644 index 000000000..761ffe733 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class66.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class67.class b/CompiledServer/production/Client/org/runite/jagex/Class67.class new file mode 100644 index 000000000..80596e1bf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class67.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class68.class b/CompiledServer/production/Client/org/runite/jagex/Class68.class new file mode 100644 index 000000000..3dd277bc6 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class68.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class69.class b/CompiledServer/production/Client/org/runite/jagex/Class69.class new file mode 100644 index 000000000..865ff5a6d Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class69.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class7.class b/CompiledServer/production/Client/org/runite/jagex/Class7.class new file mode 100644 index 000000000..319dfabb1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class7.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class70.class b/CompiledServer/production/Client/org/runite/jagex/Class70.class new file mode 100644 index 000000000..51464bdc2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class70.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class71.class b/CompiledServer/production/Client/org/runite/jagex/Class71.class new file mode 100644 index 000000000..a36b24b08 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class71.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class72.class b/CompiledServer/production/Client/org/runite/jagex/Class72.class new file mode 100644 index 000000000..792afd1de Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class72.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class73.class b/CompiledServer/production/Client/org/runite/jagex/Class73.class new file mode 100644 index 000000000..b05500812 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class73.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class74.class b/CompiledServer/production/Client/org/runite/jagex/Class74.class new file mode 100644 index 000000000..27622fd6a Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class74.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class75.class b/CompiledServer/production/Client/org/runite/jagex/Class75.class new file mode 100644 index 000000000..e14de3ea3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class75.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class75_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub1.class new file mode 100644 index 000000000..32189549c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class75_Sub2.class b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub2.class new file mode 100644 index 000000000..414709aa7 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class75_Sub3.class b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub3.class new file mode 100644 index 000000000..fab138ae8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class75_Sub4.class b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub4.class new file mode 100644 index 000000000..6078eb290 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class75_Sub4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class76.class b/CompiledServer/production/Client/org/runite/jagex/Class76.class new file mode 100644 index 000000000..3afa06da8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class76.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class77.class b/CompiledServer/production/Client/org/runite/jagex/Class77.class new file mode 100644 index 000000000..4b9993185 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class77.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class78.class b/CompiledServer/production/Client/org/runite/jagex/Class78.class new file mode 100644 index 000000000..305c8b6da Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class78.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class79.class b/CompiledServer/production/Client/org/runite/jagex/Class79.class new file mode 100644 index 000000000..852be288b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class79.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class8.class b/CompiledServer/production/Client/org/runite/jagex/Class8.class new file mode 100644 index 000000000..621ce5caf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class8.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class80.class b/CompiledServer/production/Client/org/runite/jagex/Class80.class new file mode 100644 index 000000000..7e8f74639 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class80.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class81.class b/CompiledServer/production/Client/org/runite/jagex/Class81.class new file mode 100644 index 000000000..35d1b3b12 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class81.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class82.class b/CompiledServer/production/Client/org/runite/jagex/Class82.class new file mode 100644 index 000000000..b22876aaa Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class82.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class83.class b/CompiledServer/production/Client/org/runite/jagex/Class83.class new file mode 100644 index 000000000..3c257ef13 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class83.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class84.class b/CompiledServer/production/Client/org/runite/jagex/Class84.class new file mode 100644 index 000000000..02e8e02ba Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class84.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class85.class b/CompiledServer/production/Client/org/runite/jagex/Class85.class new file mode 100644 index 000000000..9eb757551 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class85.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class86.class b/CompiledServer/production/Client/org/runite/jagex/Class86.class new file mode 100644 index 000000000..1a1c30354 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class86.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class88.class b/CompiledServer/production/Client/org/runite/jagex/Class88.class new file mode 100644 index 000000000..95c8a7444 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class88.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class9.class b/CompiledServer/production/Client/org/runite/jagex/Class9.class new file mode 100644 index 000000000..6db11d26e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class9.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class91.class b/CompiledServer/production/Client/org/runite/jagex/Class91.class new file mode 100644 index 000000000..bc42c56c2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class91.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class92.class b/CompiledServer/production/Client/org/runite/jagex/Class92.class new file mode 100644 index 000000000..4cb035d5b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class92.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class93.class b/CompiledServer/production/Client/org/runite/jagex/Class93.class new file mode 100644 index 000000000..5266db099 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class93.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class95.class b/CompiledServer/production/Client/org/runite/jagex/Class95.class new file mode 100644 index 000000000..d1a598b4f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class95.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class96.class b/CompiledServer/production/Client/org/runite/jagex/Class96.class new file mode 100644 index 000000000..b221b7269 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class96.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class97.class b/CompiledServer/production/Client/org/runite/jagex/Class97.class new file mode 100644 index 000000000..bf54aaace Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class97.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Class99.class b/CompiledServer/production/Client/org/runite/jagex/Class99.class new file mode 100644 index 000000000..2f0f622c0 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Class99.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Client.class b/CompiledServer/production/Client/org/runite/jagex/Client.class new file mode 100644 index 000000000..33a48e406 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Client.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/ClientLoader.class b/CompiledServer/production/Client/org/runite/jagex/ClientLoader.class new file mode 100644 index 000000000..916c462eb Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/ClientLoader.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Display.class b/CompiledServer/production/Client/org/runite/jagex/Display.class new file mode 100644 index 000000000..da2466ce3 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Display.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/GameObject.class b/CompiledServer/production/Client/org/runite/jagex/GameObject.class new file mode 100644 index 000000000..e22bbfc2b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/GameObject.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/GameShell.class b/CompiledServer/production/Client/org/runite/jagex/GameShell.class new file mode 100644 index 000000000..44c3660ab Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/GameShell.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/GraphicDefinition.class b/CompiledServer/production/Client/org/runite/jagex/GraphicDefinition.class new file mode 100644 index 000000000..cf4caa370 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/GraphicDefinition.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/HDIndexedSprite.class b/CompiledServer/production/Client/org/runite/jagex/HDIndexedSprite.class new file mode 100644 index 000000000..3196380bf Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/HDIndexedSprite.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/HDToolKit.class b/CompiledServer/production/Client/org/runite/jagex/HDToolKit.class new file mode 100644 index 000000000..f43219371 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/HDToolKit.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/IOHandler.class b/CompiledServer/production/Client/org/runite/jagex/IOHandler.class new file mode 100644 index 000000000..8a0ae1077 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/IOHandler.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/ISAACCipher.class b/CompiledServer/production/Client/org/runite/jagex/ISAACCipher.class new file mode 100644 index 000000000..141464ce9 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/ISAACCipher.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/InputStream_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/InputStream_Sub1.class new file mode 100644 index 000000000..03f15e347 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/InputStream_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Interface1.class b/CompiledServer/production/Client/org/runite/jagex/Interface1.class new file mode 100644 index 000000000..fd4c18787 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Interface1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Interface2.class b/CompiledServer/production/Client/org/runite/jagex/Interface2.class new file mode 100644 index 000000000..3e5459f08 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Interface2.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Interface3.class b/CompiledServer/production/Client/org/runite/jagex/Interface3.class new file mode 100644 index 000000000..2f7b9a8d2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Interface3.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Interface4.class b/CompiledServer/production/Client/org/runite/jagex/Interface4.class new file mode 100644 index 000000000..ac166b3e8 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Interface4.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Interface5.class b/CompiledServer/production/Client/org/runite/jagex/Interface5.class new file mode 100644 index 000000000..c1a35e452 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Interface5.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/ItemDefinition.class b/CompiledServer/production/Client/org/runite/jagex/ItemDefinition.class new file mode 100644 index 000000000..2194926eb Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/ItemDefinition.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/KeyboardListener.class b/CompiledServer/production/Client/org/runite/jagex/KeyboardListener.class new file mode 100644 index 000000000..4f588ae03 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/KeyboardListener.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/LDIndexedSprite.class b/CompiledServer/production/Client/org/runite/jagex/LDIndexedSprite.class new file mode 100644 index 000000000..dfe12ee00 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/LDIndexedSprite.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/LibraryDownloader.class b/CompiledServer/production/Client/org/runite/jagex/LibraryDownloader.class new file mode 100644 index 000000000..dc04913bd Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/LibraryDownloader.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Model.class b/CompiledServer/production/Client/org/runite/jagex/Model.class new file mode 100644 index 000000000..93efcfa57 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Model.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Model_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/Model_Sub1.class new file mode 100644 index 000000000..8da062436 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Model_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/MouseListeningClass.class b/CompiledServer/production/Client/org/runite/jagex/MouseListeningClass.class new file mode 100644 index 000000000..6e07378c2 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/MouseListeningClass.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/MouseWheel.class b/CompiledServer/production/Client/org/runite/jagex/MouseWheel.class new file mode 100644 index 000000000..d85351d8f Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/MouseWheel.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/NPC.class b/CompiledServer/production/Client/org/runite/jagex/NPC.class new file mode 100644 index 000000000..9d458775b Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/NPC.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/NPCDefinition.class b/CompiledServer/production/Client/org/runite/jagex/NPCDefinition.class new file mode 100644 index 000000000..1456f8f27 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/NPCDefinition.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Node.class b/CompiledServer/production/Client/org/runite/jagex/Node.class new file mode 100644 index 000000000..f8e5f1b77 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Node.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/NodeList.class b/CompiledServer/production/Client/org/runite/jagex/NodeList.class new file mode 100644 index 000000000..186abc12c Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/NodeList.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/ObjectDefinition.class b/CompiledServer/production/Client/org/runite/jagex/ObjectDefinition.class new file mode 100644 index 000000000..11e4ea237 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/ObjectDefinition.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/OutputStream_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/OutputStream_Sub1.class new file mode 100644 index 000000000..218e4dc54 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/OutputStream_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/PacketParser.class b/CompiledServer/production/Client/org/runite/jagex/PacketParser.class new file mode 100644 index 000000000..2c9645f1e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/PacketParser.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Player.class b/CompiledServer/production/Client/org/runite/jagex/Player.class new file mode 100644 index 000000000..6e58f42e5 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Player.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/RSByteBuffer.class b/CompiledServer/production/Client/org/runite/jagex/RSByteBuffer.class new file mode 100644 index 000000000..47d33f0e1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/RSByteBuffer.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/RSInterface.class b/CompiledServer/production/Client/org/runite/jagex/RSInterface.class new file mode 100644 index 000000000..c2ae7a484 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/RSInterface.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/RSString.class b/CompiledServer/production/Client/org/runite/jagex/RSString.class new file mode 100644 index 000000000..14a1b82fb Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/RSString.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/RenderAnimationDefinition.class b/CompiledServer/production/Client/org/runite/jagex/RenderAnimationDefinition.class new file mode 100644 index 000000000..a2cef4028 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/RenderAnimationDefinition.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/RuntimeException_Sub1.class b/CompiledServer/production/Client/org/runite/jagex/RuntimeException_Sub1.class new file mode 100644 index 000000000..cfb6eb95e Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/RuntimeException_Sub1.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Sensor.class b/CompiledServer/production/Client/org/runite/jagex/Sensor.class new file mode 100644 index 000000000..10ce78657 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Sensor.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/Signlink.class b/CompiledServer/production/Client/org/runite/jagex/Signlink.class new file mode 100644 index 000000000..8a7c23989 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/Signlink.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/WorldListCountry.class b/CompiledServer/production/Client/org/runite/jagex/WorldListCountry.class new file mode 100644 index 000000000..ae4e82293 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/WorldListCountry.class differ diff --git a/CompiledServer/production/Client/org/runite/jagex/WorldListEntry.class b/CompiledServer/production/Client/org/runite/jagex/WorldListEntry.class new file mode 100644 index 000000000..f5ae300e1 Binary files /dev/null and b/CompiledServer/production/Client/org/runite/jagex/WorldListEntry.class differ diff --git a/Management-Server/org/keldagrim/Main$1.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$1.class similarity index 62% rename from Management-Server/org/keldagrim/Main$1.class rename to CompiledServer/production/Management-Server/org/keldagrim/Management$1.class index 90e954c78..cf8da0657 100644 Binary files a/Management-Server/org/keldagrim/Main$1.class and b/CompiledServer/production/Management-Server/org/keldagrim/Management$1.class differ diff --git a/CompiledServer/production/Management-Server/org/keldagrim/Management$2.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$2.class new file mode 100644 index 000000000..f45789089 Binary files /dev/null and b/CompiledServer/production/Management-Server/org/keldagrim/Management$2.class differ diff --git a/Management-Server/org/keldagrim/Main$3.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$3.class similarity index 54% rename from Management-Server/org/keldagrim/Main$3.class rename to CompiledServer/production/Management-Server/org/keldagrim/Management$3.class index 5afc4ca41..fb0e4770a 100644 Binary files a/Management-Server/org/keldagrim/Main$3.class and b/CompiledServer/production/Management-Server/org/keldagrim/Management$3.class differ diff --git a/CompiledServer/production/Management-Server/org/keldagrim/Management$4.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$4.class new file mode 100644 index 000000000..89bde6cee Binary files /dev/null and b/CompiledServer/production/Management-Server/org/keldagrim/Management$4.class differ diff --git a/CompiledServer/production/Management-Server/org/keldagrim/Management$5.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$5.class new file mode 100644 index 000000000..4cb50c8aa Binary files /dev/null and b/CompiledServer/production/Management-Server/org/keldagrim/Management$5.class differ diff --git a/CompiledServer/production/Management-Server/org/keldagrim/Management$6.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$6.class new file mode 100644 index 000000000..c6210edba Binary files /dev/null and b/CompiledServer/production/Management-Server/org/keldagrim/Management$6.class differ diff --git a/CompiledServer/production/Management-Server/org/keldagrim/Management$7.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$7.class new file mode 100644 index 000000000..387520f08 Binary files /dev/null and b/CompiledServer/production/Management-Server/org/keldagrim/Management$7.class differ diff --git a/CompiledServer/production/Management-Server/org/keldagrim/Management$8.class b/CompiledServer/production/Management-Server/org/keldagrim/Management$8.class new file mode 100644 index 000000000..5d58bd679 Binary files /dev/null and b/CompiledServer/production/Management-Server/org/keldagrim/Management$8.class differ diff --git a/Management-Server/org/keldagrim/Main.class b/CompiledServer/production/Management-Server/org/keldagrim/Management.class similarity index 54% rename from Management-Server/org/keldagrim/Main.class rename to CompiledServer/production/Management-Server/org/keldagrim/Management.class index 721f841cd..06374944e 100644 Binary files a/Management-Server/org/keldagrim/Main.class and b/CompiledServer/production/Management-Server/org/keldagrim/Management.class differ diff --git a/Management-Server/org/keldagrim/ServerConstants.class b/CompiledServer/production/Management-Server/org/keldagrim/ServerConstants.class similarity index 100% rename from Management-Server/org/keldagrim/ServerConstants.class rename to CompiledServer/production/Management-Server/org/keldagrim/ServerConstants.class diff --git a/Management-Server/org/keldagrim/classloader/ClassLoadServer.class b/CompiledServer/production/Management-Server/org/keldagrim/classloader/ClassLoadServer.class similarity index 100% rename from Management-Server/org/keldagrim/classloader/ClassLoadServer.class rename to CompiledServer/production/Management-Server/org/keldagrim/classloader/ClassLoadServer.class diff --git a/Management-Server/org/keldagrim/classloader/WorkerThread.class b/CompiledServer/production/Management-Server/org/keldagrim/classloader/WorkerThread.class similarity index 100% rename from Management-Server/org/keldagrim/classloader/WorkerThread.class rename to CompiledServer/production/Management-Server/org/keldagrim/classloader/WorkerThread.class diff --git a/Management-Server/org/keldagrim/launcher/Constants.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/Constants.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/Constants.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/Constants.class diff --git a/Management-Server/org/keldagrim/launcher/Initializer$1.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/Initializer$1.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/Initializer$1.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/Initializer$1.class diff --git a/Management-Server/org/keldagrim/launcher/Initializer.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/Initializer.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/Initializer.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/Initializer.class diff --git a/Management-Server/org/keldagrim/launcher/SplashFrame$1.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/SplashFrame$1.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/SplashFrame$1.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/SplashFrame$1.class diff --git a/Management-Server/org/keldagrim/launcher/SplashFrame.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/SplashFrame.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/SplashFrame.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/SplashFrame.class diff --git a/Management-Server/org/keldagrim/launcher/screen/InteractiveOverlay.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/InteractiveOverlay.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/screen/InteractiveOverlay.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/InteractiveOverlay.class diff --git a/Management-Server/org/keldagrim/launcher/screen/SplashScreen$1.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/SplashScreen$1.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/screen/SplashScreen$1.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/SplashScreen$1.class diff --git a/Management-Server/org/keldagrim/launcher/screen/SplashScreen.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/SplashScreen.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/screen/SplashScreen.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/SplashScreen.class diff --git a/Management-Server/org/keldagrim/launcher/screen/impl/LoadingBar.class b/CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/impl/LoadingBar.class similarity index 100% rename from Management-Server/org/keldagrim/launcher/screen/impl/LoadingBar.class rename to CompiledServer/production/Management-Server/org/keldagrim/launcher/screen/impl/LoadingBar.class diff --git a/Management-Server/org/keldagrim/net/EventProducer.class b/CompiledServer/production/Management-Server/org/keldagrim/net/EventProducer.class similarity index 100% rename from Management-Server/org/keldagrim/net/EventProducer.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/EventProducer.class diff --git a/Management-Server/org/keldagrim/net/IoEventHandler.class b/CompiledServer/production/Management-Server/org/keldagrim/net/IoEventHandler.class similarity index 100% rename from Management-Server/org/keldagrim/net/IoEventHandler.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/IoEventHandler.class diff --git a/Management-Server/org/keldagrim/net/IoReadEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/IoReadEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/IoReadEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/IoReadEvent.class diff --git a/Management-Server/org/keldagrim/net/IoSession.class b/CompiledServer/production/Management-Server/org/keldagrim/net/IoSession.class similarity index 100% rename from Management-Server/org/keldagrim/net/IoSession.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/IoSession.class diff --git a/Management-Server/org/keldagrim/net/IoWriteEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/IoWriteEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/IoWriteEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/IoWriteEvent.class diff --git a/Management-Server/org/keldagrim/net/NioReactor.class b/CompiledServer/production/Management-Server/org/keldagrim/net/NioReactor.class similarity index 100% rename from Management-Server/org/keldagrim/net/NioReactor.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/NioReactor.class diff --git a/Management-Server/org/keldagrim/net/event/HSReadEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/HSReadEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/HSReadEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/HSReadEvent.class diff --git a/Management-Server/org/keldagrim/net/event/HSWriteEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/HSWriteEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/HSWriteEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/HSWriteEvent.class diff --git a/Management-Server/org/keldagrim/net/event/PacketReadEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/PacketReadEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/PacketReadEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/PacketReadEvent.class diff --git a/Management-Server/org/keldagrim/net/event/PacketWriteEvent$1.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/PacketWriteEvent$1.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/PacketWriteEvent$1.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/PacketWriteEvent$1.class diff --git a/Management-Server/org/keldagrim/net/event/PacketWriteEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/PacketWriteEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/PacketWriteEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/PacketWriteEvent.class diff --git a/Management-Server/org/keldagrim/net/event/RegistryReadEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/RegistryReadEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/RegistryReadEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/RegistryReadEvent.class diff --git a/Management-Server/org/keldagrim/net/event/RegistryWriteEvent.class b/CompiledServer/production/Management-Server/org/keldagrim/net/event/RegistryWriteEvent.class similarity index 100% rename from Management-Server/org/keldagrim/net/event/RegistryWriteEvent.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/event/RegistryWriteEvent.class diff --git a/Management-Server/org/keldagrim/net/packet/IoBuffer.class b/CompiledServer/production/Management-Server/org/keldagrim/net/packet/IoBuffer.class similarity index 100% rename from Management-Server/org/keldagrim/net/packet/IoBuffer.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/packet/IoBuffer.class diff --git a/Management-Server/org/keldagrim/net/packet/PacketHeader.class b/CompiledServer/production/Management-Server/org/keldagrim/net/packet/PacketHeader.class similarity index 100% rename from Management-Server/org/keldagrim/net/packet/PacketHeader.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/packet/PacketHeader.class diff --git a/Management-Server/org/keldagrim/net/packet/WorldPacketRepository.class b/CompiledServer/production/Management-Server/org/keldagrim/net/packet/WorldPacketRepository.class similarity index 100% rename from Management-Server/org/keldagrim/net/packet/WorldPacketRepository.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/packet/WorldPacketRepository.class diff --git a/Management-Server/org/keldagrim/net/producer/HSEventProducer.class b/CompiledServer/production/Management-Server/org/keldagrim/net/producer/HSEventProducer.class similarity index 100% rename from Management-Server/org/keldagrim/net/producer/HSEventProducer.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/producer/HSEventProducer.class diff --git a/Management-Server/org/keldagrim/net/producer/PacketEventProducer.class b/CompiledServer/production/Management-Server/org/keldagrim/net/producer/PacketEventProducer.class similarity index 100% rename from Management-Server/org/keldagrim/net/producer/PacketEventProducer.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/producer/PacketEventProducer.class diff --git a/Management-Server/org/keldagrim/net/producer/RegistryEventProducer.class b/CompiledServer/production/Management-Server/org/keldagrim/net/producer/RegistryEventProducer.class similarity index 100% rename from Management-Server/org/keldagrim/net/producer/RegistryEventProducer.class rename to CompiledServer/production/Management-Server/org/keldagrim/net/producer/RegistryEventProducer.class diff --git a/Management-Server/org/keldagrim/system/OperatingSystem.class b/CompiledServer/production/Management-Server/org/keldagrim/system/OperatingSystem.class similarity index 100% rename from Management-Server/org/keldagrim/system/OperatingSystem.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/OperatingSystem.class diff --git a/Management-Server/org/keldagrim/system/PunishmentStorage.class b/CompiledServer/production/Management-Server/org/keldagrim/system/PunishmentStorage.class similarity index 100% rename from Management-Server/org/keldagrim/system/PunishmentStorage.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/PunishmentStorage.class diff --git a/Management-Server/org/keldagrim/system/ShutdownSequence.class b/CompiledServer/production/Management-Server/org/keldagrim/system/ShutdownSequence.class similarity index 100% rename from Management-Server/org/keldagrim/system/ShutdownSequence.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/ShutdownSequence.class diff --git a/Management-Server/org/keldagrim/system/communication/ClanRank.class b/CompiledServer/production/Management-Server/org/keldagrim/system/communication/ClanRank.class similarity index 100% rename from Management-Server/org/keldagrim/system/communication/ClanRank.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/communication/ClanRank.class diff --git a/Management-Server/org/keldagrim/system/communication/ClanRepository.class b/CompiledServer/production/Management-Server/org/keldagrim/system/communication/ClanRepository.class similarity index 100% rename from Management-Server/org/keldagrim/system/communication/ClanRepository.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/communication/ClanRepository.class diff --git a/Management-Server/org/keldagrim/system/communication/CommunicationInfo.class b/CompiledServer/production/Management-Server/org/keldagrim/system/communication/CommunicationInfo.class similarity index 100% rename from Management-Server/org/keldagrim/system/communication/CommunicationInfo.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/communication/CommunicationInfo.class diff --git a/Management-Server/org/keldagrim/system/mysql/SQLColumn.class b/CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLColumn.class similarity index 100% rename from Management-Server/org/keldagrim/system/mysql/SQLColumn.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLColumn.class diff --git a/Management-Server/org/keldagrim/system/mysql/SQLEntryHandler.class b/CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLEntryHandler.class similarity index 100% rename from Management-Server/org/keldagrim/system/mysql/SQLEntryHandler.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLEntryHandler.class diff --git a/Management-Server/org/keldagrim/system/mysql/SQLManager.class b/CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLManager.class similarity index 100% rename from Management-Server/org/keldagrim/system/mysql/SQLManager.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLManager.class diff --git a/Management-Server/org/keldagrim/system/mysql/SQLTable.class b/CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLTable.class similarity index 100% rename from Management-Server/org/keldagrim/system/mysql/SQLTable.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/mysql/SQLTable.class diff --git a/Management-Server/org/keldagrim/system/mysql/WorldListSQLHandler.class b/CompiledServer/production/Management-Server/org/keldagrim/system/mysql/WorldListSQLHandler.class similarity index 100% rename from Management-Server/org/keldagrim/system/mysql/WorldListSQLHandler.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/mysql/WorldListSQLHandler.class diff --git a/Management-Server/org/keldagrim/system/util/ByteBufferUtils.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/ByteBufferUtils.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/ByteBufferUtils.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/ByteBufferUtils.class diff --git a/Management-Server/org/keldagrim/system/util/Command.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/Command.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/Command.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/Command.class diff --git a/Management-Server/org/keldagrim/system/util/EncryptionManager$BCrypt.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/EncryptionManager$BCrypt.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/EncryptionManager$BCrypt.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/EncryptionManager$BCrypt.class diff --git a/Management-Server/org/keldagrim/system/util/EncryptionManager.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/EncryptionManager.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/EncryptionManager.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/EncryptionManager.class diff --git a/Management-Server/org/keldagrim/system/util/PlayerDatabaseGen.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/PlayerDatabaseGen.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/PlayerDatabaseGen.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/PlayerDatabaseGen.class diff --git a/Management-Server/org/keldagrim/system/util/StringUtils.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/StringUtils.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/StringUtils.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/StringUtils.class diff --git a/Management-Server/org/keldagrim/system/util/TaskExecutor.class b/CompiledServer/production/Management-Server/org/keldagrim/system/util/TaskExecutor.class similarity index 100% rename from Management-Server/org/keldagrim/system/util/TaskExecutor.class rename to CompiledServer/production/Management-Server/org/keldagrim/system/util/TaskExecutor.class diff --git a/Management-Server/org/keldagrim/world/GameServer.class b/CompiledServer/production/Management-Server/org/keldagrim/world/GameServer.class similarity index 100% rename from Management-Server/org/keldagrim/world/GameServer.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/GameServer.class diff --git a/Management-Server/org/keldagrim/world/PlayerSession.class b/CompiledServer/production/Management-Server/org/keldagrim/world/PlayerSession.class similarity index 100% rename from Management-Server/org/keldagrim/world/PlayerSession.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/PlayerSession.class diff --git a/Management-Server/org/keldagrim/world/WorldDatabase.class b/CompiledServer/production/Management-Server/org/keldagrim/world/WorldDatabase.class similarity index 100% rename from Management-Server/org/keldagrim/world/WorldDatabase.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/WorldDatabase.class diff --git a/Management-Server/org/keldagrim/world/info/CountryFlag.class b/CompiledServer/production/Management-Server/org/keldagrim/world/info/CountryFlag.class similarity index 100% rename from Management-Server/org/keldagrim/world/info/CountryFlag.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/info/CountryFlag.class diff --git a/Management-Server/org/keldagrim/world/info/Response.class b/CompiledServer/production/Management-Server/org/keldagrim/world/info/Response.class similarity index 100% rename from Management-Server/org/keldagrim/world/info/Response.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/info/Response.class diff --git a/Management-Server/org/keldagrim/world/info/UIDInfo.class b/CompiledServer/production/Management-Server/org/keldagrim/world/info/UIDInfo.class similarity index 100% rename from Management-Server/org/keldagrim/world/info/UIDInfo.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/info/UIDInfo.class diff --git a/Management-Server/org/keldagrim/world/info/WorldInfo.class b/CompiledServer/production/Management-Server/org/keldagrim/world/info/WorldInfo.class similarity index 100% rename from Management-Server/org/keldagrim/world/info/WorldInfo.class rename to CompiledServer/production/Management-Server/org/keldagrim/world/info/WorldInfo.class diff --git a/CompiledServer/production/Server/META-INF/MANIFEST.MF b/CompiledServer/production/Server/META-INF/MANIFEST.MF new file mode 100644 index 000000000..68ff55e03 --- /dev/null +++ b/CompiledServer/production/Server/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/CompiledServer/production/Server/METAs/META-INF/MANIFEST.MF b/CompiledServer/production/Server/METAs/META-INF/MANIFEST.MF new file mode 100644 index 000000000..c2c137eb9 --- /dev/null +++ b/CompiledServer/production/Server/METAs/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/CompiledServer/production/Server/org/crandor/Server.class b/CompiledServer/production/Server/org/crandor/Server.class new file mode 100644 index 000000000..2b9066844 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/Server.class differ diff --git a/CompiledServer/production/Server/org/crandor/ServerConstants.class b/CompiledServer/production/Server/org/crandor/ServerConstants.class new file mode 100644 index 000000000..c59ebc875 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/ServerConstants.class differ diff --git a/CompiledServer/production/Server/org/crandor/Util.class b/CompiledServer/production/Server/org/crandor/Util.class new file mode 100644 index 000000000..8f38d73ee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/Util.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/Cache.class b/CompiledServer/production/Server/org/crandor/cache/Cache.class new file mode 100644 index 000000000..87dc85c96 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/Cache.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/CacheFile.class b/CompiledServer/production/Server/org/crandor/cache/CacheFile.class new file mode 100644 index 000000000..4925be26b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/CacheFile.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/CacheFileManager.class b/CompiledServer/production/Server/org/crandor/cache/CacheFileManager.class new file mode 100644 index 000000000..be15414ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/CacheFileManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/ServerStore.class b/CompiledServer/production/Server/org/crandor/cache/ServerStore.class new file mode 100644 index 000000000..ac51d0c2a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/ServerStore.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/StoreFile.class b/CompiledServer/production/Server/org/crandor/cache/StoreFile.class new file mode 100644 index 000000000..93ddf8c22 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/StoreFile.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/bzip2/BZip2BlockEntry.class b/CompiledServer/production/Server/org/crandor/cache/bzip2/BZip2BlockEntry.class new file mode 100644 index 000000000..2eca06a72 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/bzip2/BZip2BlockEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/bzip2/BZip2Decompressor.class b/CompiledServer/production/Server/org/crandor/cache/bzip2/BZip2Decompressor.class new file mode 100644 index 000000000..c2c938c8f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/bzip2/BZip2Decompressor.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/crypto/ISAACCipher.class b/CompiledServer/production/Server/org/crandor/cache/crypto/ISAACCipher.class new file mode 100644 index 000000000..6b20166a6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/crypto/ISAACCipher.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/crypto/ISAACPair.class b/CompiledServer/production/Server/org/crandor/cache/crypto/ISAACPair.class new file mode 100644 index 000000000..ccc8c2203 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/crypto/ISAACPair.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/crypto/XTEACryption.class b/CompiledServer/production/Server/org/crandor/cache/crypto/XTEACryption.class new file mode 100644 index 000000000..b1986f97e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/crypto/XTEACryption.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/Definition.class b/CompiledServer/production/Server/org/crandor/cache/def/Definition.class new file mode 100644 index 000000000..e2b439770 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/Definition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/AnimationDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/AnimationDefinition.class new file mode 100644 index 000000000..238595c08 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/AnimationDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/CS2Mapping.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/CS2Mapping.class new file mode 100644 index 000000000..4591d5c47 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/CS2Mapping.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/ClothDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/ClothDefinition.class new file mode 100644 index 000000000..9bcf1d3b5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/ClothDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/ConfigFileDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/ConfigFileDefinition.class new file mode 100644 index 000000000..2ad89b6e2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/ConfigFileDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/GraphicDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/GraphicDefinition.class new file mode 100644 index 000000000..a368afcae Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/GraphicDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/ItemDefinition$1.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/ItemDefinition$1.class new file mode 100644 index 000000000..7c7d57834 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/ItemDefinition$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/ItemDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/ItemDefinition.class new file mode 100644 index 000000000..ec8b698c2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/ItemDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/NPCDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/NPCDefinition.class new file mode 100644 index 000000000..84ef85cbd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/NPCDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/ObjectDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/ObjectDefinition.class new file mode 100644 index 000000000..41c57a677 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/ObjectDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/RenderAnimationDefinition.class b/CompiledServer/production/Server/org/crandor/cache/def/impl/RenderAnimationDefinition.class new file mode 100644 index 000000000..19975e527 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/def/impl/RenderAnimationDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/def/impl/test.txt b/CompiledServer/production/Server/org/crandor/cache/def/impl/test.txt new file mode 100644 index 000000000..2cd6e87a9 --- /dev/null +++ b/CompiledServer/production/Server/org/crandor/cache/def/impl/test.txt @@ -0,0 +1,365 @@ +private void readValues(int i, InputStream stream, int opcode) { + if (opcode != 1 && opcode != 5) { + if (opcode != 2) { + if (opcode != 14) { + if (opcode != 15) { + if (opcode == 17) { + projectileCliped = false; + clipType = 0; + } else if (opcode != 18) { + if (opcode == 19) + secondInt = stream.readUnsignedByte(); + else if (opcode == 21) + aByte3912 = (byte) 1; + else if (opcode != 22) { + if (opcode != 23) { + if (opcode != 24) { + if (opcode == 27) + clipType = 1; + else if (opcode == 28) + anInt3892 = (stream + .readUnsignedByte() << 2); + else if (opcode != 29) { + if (opcode != 39) { + if (opcode < 30 || opcode >= 35) { + if (opcode == 40) { + int i_53_ = (stream + .readUnsignedByte()); + originalColors = new short[i_53_]; + modifiedColors = new short[i_53_]; + for (int i_54_ = 0; i_53_ > i_54_; i_54_++) { + originalColors[i_54_] = (short) (stream + .readUnsignedShort()); + modifiedColors[i_54_] = (short) (stream + .readUnsignedShort()); + } + } else if (opcode != 41) { + if (opcode != 42) { + if (opcode != 62) { + if (opcode != 64) { + if (opcode == 65) + anInt3902 = stream + .readUnsignedShort(); + else if (opcode != 66) { + if (opcode != 67) { + if (opcode == 69) + anInt3925 = stream + .readUnsignedByte(); + else if (opcode != 70) { + if (opcode == 71) + anInt3889 = stream + .readShort() << 2; + else if (opcode != 72) { + if (opcode == 73) + secondBool = true; + else if (opcode == 74) + notCliped = true; + else if (opcode != 75) { + if (opcode != 77 + && opcode != 92) { + if (opcode == 78) { + anInt3860 = stream + .readUnsignedShort(); + anInt3904 = stream + .readUnsignedByte(); + } else if (opcode != 79) { + if (opcode == 81) { + aByte3912 = (byte) 2; + anInt3882 = 256 * stream + .readUnsignedByte(); + } else if (opcode != 82) { + if (opcode == 88) + aBoolean3853 = false; + else if (opcode != 89) { + if (opcode == 90) + aBoolean3870 = true; + else if (opcode != 91) { + if (opcode != 93) { + if (opcode == 94) + aByte3912 = (byte) 4; + else if (opcode != 95) { + if (opcode != 96) { + if (opcode == 97) + aBoolean3866 = true; + else if (opcode == 98) + aBoolean3923 = true; + else if (opcode == 99) { + anInt3857 = stream + .readUnsignedByte(); + anInt3835 = stream + .readUnsignedShort(); + } else if (opcode == 100) { + anInt3844 = stream + .readUnsignedByte(); + anInt3913 = stream + .readUnsignedShort(); + } else if (opcode != 101) { + if (opcode == 102) + anInt3838 = stream + .readUnsignedShort(); + else if (opcode == 103) + thirdInt = 0; + else if (opcode != 104) { + if (opcode == 105) + aBoolean3906 = true; + else if (opcode == 106) { + int i_55_ = stream + .readUnsignedByte(); + anIntArray3869 = new int[i_55_]; + anIntArray3833 = new int[i_55_]; + for (int i_56_ = 0; i_56_ < i_55_; i_56_++) { + anIntArray3833[i_56_] = stream + .readUnsignedShort(); + int i_57_ = stream + .readUnsignedByte(); + anIntArray3869[i_56_] = i_57_; + anInt3881 += i_57_; + } + } else if (opcode == 107) + anInt3851 = stream + .readUnsignedShort(); + else if (opcode >= 150 + && opcode < 155) { + options[opcode + + -150] = stream + .readString(); + /*if (!loader.showOptions) + options[opcode + -150] = null;*/ + } else if (opcode != 160) { + if (opcode == 162) { + aByte3912 = (byte) 3; + anInt3882 = stream + .readInt(); + } else if (opcode == 163) { + aByte3847 = (byte) stream + .readByte(); + aByte3849 = (byte) stream + .readByte(); + aByte3837 = (byte) stream + .readByte(); + aByte3914 = (byte) stream + .readByte(); + } else if (opcode != 164) { + if (opcode != 165) { + if (opcode != 166) { + if (opcode == 167) + anInt3921 = stream + .readUnsignedShort(); + else if (opcode != 168) { + if (opcode == 169) { + aBoolean3845 = true; + //added opcode + }else if (opcode == 170) { + int anInt3383 = stream.readUnsignedSmart(); + //added opcode + }else if (opcode == 171) { + int anInt3362 = stream.readUnsignedSmart(); + //added opcode + }else if (opcode == 173) { + int anInt3302 = stream.readUnsignedShort(); + int anInt3336 = stream.readUnsignedShort(); + //added opcode + }else if (opcode == 177) { + boolean ub = true; + //added opcode + }else if (opcode == 178) { + int db = stream.readUnsignedByte(); + } else if (opcode == 249) { + int i_58_ = stream + .readUnsignedByte(); + if (aClass194_3922 == null) { + /*int i_59_ = Class307 + .method3331( + (byte) -117, + i_58_); + aClass194_3922 = new HashTable( + i_59_);*/ + } + for (int i_60_ = 0; i_60_ < i_58_; i_60_++) { + boolean bool = stream + .readUnsignedByte() == 1; + int i_61_ = stream.read24BitInt(); + Object class279; + if (!bool) + /*class279 = new IntegerNode(*/ + stream + .readInt();//); + else + /*class279 = new Class279_Sub4(*/ + stream + .readString();//); + /*aClass194_3922 + .method1598( + (long) i_61_, + -125, + class279);*/ + } + } + } else + aBoolean3894 = true; + } else + anInt3877 = stream + .readShort(); + } else + anInt3875 = stream + .readShort(); + } else + anInt3834 = stream + .readShort(); + } else { + int i_62_ = stream + .readUnsignedByte(); + anIntArray3908 = new int[i_62_]; + for (int i_63_ = 0; i_62_ > i_63_; i_63_++) + anIntArray3908[i_63_] = stream + .readUnsignedShort(); + } + } else + anInt3865 = stream + .readUnsignedByte(); + } else + anInt3850 = stream + .readUnsignedByte(); + } else + aBoolean3924 = true; + } else { + aByte3912 = (byte) 5; + anInt3882 = stream + .readShort(); + } + } else { + aByte3912 = (byte) 3; + anInt3882 = stream + .readUnsignedShort(); + } + } else + aBoolean3873 = true; + } else + aBoolean3895 = false; + } else + aBoolean3891 = true; + } else { + anInt3900 = stream + .readUnsignedShort(); + anInt3905 = stream + .readUnsignedShort(); + anInt3904 = stream + .readUnsignedByte(); + int i_64_ = stream + .readUnsignedByte(); + anIntArray3859 = new int[i_64_]; + for (int i_65_ = 0; i_65_ < i_64_; i_65_++) + anIntArray3859[i_65_] = stream + .readUnsignedShort(); + } + } else { + configFileId = stream + .readUnsignedShort(); + if (configFileId == 65535) + configFileId = -1; + configId = stream + .readUnsignedShort(); + if (configId == 65535) + configId = -1; + int i_66_ = -1; + if (opcode == 92) { + i_66_ = stream + .readUnsignedShort(); + if (i_66_ == 65535) + i_66_ = -1; + } + int i_67_ = stream + .readUnsignedByte(); + childrenIds = new int[i_67_ + - -2]; + for (int i_68_ = 0; i_67_ >= i_68_; i_68_++) { + childrenIds[i_68_] = stream + .readUnsignedShort(); + if (childrenIds[i_68_] == 65535) + childrenIds[i_68_] = -1; + } + childrenIds[i_67_ + 1] = i_66_; + } + } else + anInt3855 = stream + .readUnsignedByte(); + } else + anInt3915 = stream + .readShort() << 2; + } else + anInt3883 = stream + .readShort() << 2; + } else + anInt3917 = stream + .readUnsignedShort(); + } else + anInt3841 = stream + .readUnsignedShort(); + } else + aBoolean3872 = false; + } else + aBoolean3839 = true; + } else { + int i_69_ = (stream + .readUnsignedByte()); + aByteArray3858 = (new byte[i_69_]); + for (int i_70_ = 0; i_70_ < i_69_; i_70_++) + aByteArray3858[i_70_] = (byte) (stream + .readByte()); + } + } else { + int i_71_ = (stream + .readUnsignedByte()); + aShortArray3920 = new short[i_71_]; + aShortArray3919 = new short[i_71_]; + for (int i_72_ = 0; i_71_ > i_72_; i_72_++) { + aShortArray3920[i_72_] = (short) (stream + .readUnsignedShort()); + aShortArray3919[i_72_] = (short) (stream + .readUnsignedShort()); + } + } + } else + options[-30 + + opcode] = (stream + .readString()); + } else + anInt3840 = (stream.readByte() * 5); + } else + anInt3878 = stream.readByte(); + } else { + anInt3876 = stream.readUnsignedShort(); + if (anInt3876 == 65535) + anInt3876 = -1; + } + } else + thirdInt = 1; + } else + aBoolean3867 = true; + } else + projectileCliped = false; + } else + sizeY = stream.readUnsignedByte(); + } else + sizeX = stream.readUnsignedByte(); + } else + name = stream.readString(); + } else { + boolean aBoolean1162 = false; + if (opcode == 5 && aBoolean1162) + method3297(stream); + int i_73_ = stream.readUnsignedByte(); + anIntArrayArray3916 = new int[i_73_][]; + aByteArray3899 = new byte[i_73_]; + for (int i_74_ = 0; i_74_ < i_73_; i_74_++) { + aByteArray3899[i_74_] = (byte) stream.readByte(); + int i_75_ = stream.readUnsignedByte(); + anIntArrayArray3916[i_74_] = new int[i_75_]; + for (int i_76_ = 0; i_75_ > i_76_; i_76_++) + anIntArrayArray3916[i_74_][i_76_] = stream + .readUnsignedShort(); + } + if (opcode == 5 && !aBoolean1162) + method3297(stream); + } + } \ No newline at end of file diff --git a/CompiledServer/production/Server/org/crandor/cache/gzip/GZipDecompressor.class b/CompiledServer/production/Server/org/crandor/cache/gzip/GZipDecompressor.class new file mode 100644 index 000000000..354fb0b1b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/gzip/GZipDecompressor.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/misc/Container.class b/CompiledServer/production/Server/org/crandor/cache/misc/Container.class new file mode 100644 index 000000000..a109962a2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/misc/Container.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/misc/ContainersInformation.class b/CompiledServer/production/Server/org/crandor/cache/misc/ContainersInformation.class new file mode 100644 index 000000000..df5da428a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/misc/ContainersInformation.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/misc/FilesContainer.class b/CompiledServer/production/Server/org/crandor/cache/misc/FilesContainer.class new file mode 100644 index 000000000..8766c5e87 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/misc/FilesContainer.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/misc/buffer/BufferInputStream.class b/CompiledServer/production/Server/org/crandor/cache/misc/buffer/BufferInputStream.class new file mode 100644 index 000000000..1d97ed2a2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/misc/buffer/BufferInputStream.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/misc/buffer/BufferOutputStream.class b/CompiledServer/production/Server/org/crandor/cache/misc/buffer/BufferOutputStream.class new file mode 100644 index 000000000..954cb2bf2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/misc/buffer/BufferOutputStream.class differ diff --git a/CompiledServer/production/Server/org/crandor/cache/misc/buffer/ByteBufferUtils.class b/CompiledServer/production/Server/org/crandor/cache/misc/buffer/ByteBufferUtils.class new file mode 100644 index 000000000..9652f4650 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/cache/misc/buffer/ByteBufferUtils.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/AccessMaskBuilder.class b/CompiledServer/production/Server/org/crandor/game/component/AccessMaskBuilder.class new file mode 100644 index 000000000..46c8a8150 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/AccessMaskBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/CloseEvent.class b/CompiledServer/production/Server/org/crandor/game/component/CloseEvent.class new file mode 100644 index 000000000..b0be3f1dd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/CloseEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/Component$1.class b/CompiledServer/production/Server/org/crandor/game/component/Component$1.class new file mode 100644 index 000000000..9e26ed55b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/Component$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/Component.class b/CompiledServer/production/Server/org/crandor/game/component/Component.class new file mode 100644 index 000000000..7749119b0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/Component.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/ComponentDefinition.class b/CompiledServer/production/Server/org/crandor/game/component/ComponentDefinition.class new file mode 100644 index 000000000..7e5431922 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/ComponentDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/ComponentPlugin.class b/CompiledServer/production/Server/org/crandor/game/component/ComponentPlugin.class new file mode 100644 index 000000000..f8b01f848 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/ComponentPlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/component/InterfaceType.class b/CompiledServer/production/Server/org/crandor/game/component/InterfaceType.class new file mode 100644 index 000000000..2f772005f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/component/InterfaceType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/Container.class b/CompiledServer/production/Server/org/crandor/game/container/Container.class new file mode 100644 index 000000000..947345ea1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/Container.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/ContainerEvent.class b/CompiledServer/production/Server/org/crandor/game/container/ContainerEvent.class new file mode 100644 index 000000000..5251aa801 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/ContainerEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/ContainerListener.class b/CompiledServer/production/Server/org/crandor/game/container/ContainerListener.class new file mode 100644 index 000000000..8e62c010e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/ContainerListener.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/ContainerType.class b/CompiledServer/production/Server/org/crandor/game/container/ContainerType.class new file mode 100644 index 000000000..89ddefbee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/ContainerType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/SortType.class b/CompiledServer/production/Server/org/crandor/game/container/SortType.class new file mode 100644 index 000000000..6bc96c4f7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/SortType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/access/BitregisterAssembler.class b/CompiledServer/production/Server/org/crandor/game/container/access/BitregisterAssembler.class new file mode 100644 index 000000000..7cc41ca94 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/access/BitregisterAssembler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/access/InterfaceContainer.class b/CompiledServer/production/Server/org/crandor/game/container/access/InterfaceContainer.class new file mode 100644 index 000000000..b5ef870c6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/access/InterfaceContainer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer$1.class b/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer$1.class new file mode 100644 index 000000000..0de72db8b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer$BankListener.class b/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer$BankListener.class new file mode 100644 index 000000000..f1179c69a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer$BankListener.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer.class b/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer.class new file mode 100644 index 000000000..c02956779 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/impl/BankContainer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/impl/EquipmentContainer$EquipmentListener.class b/CompiledServer/production/Server/org/crandor/game/container/impl/EquipmentContainer$EquipmentListener.class new file mode 100644 index 000000000..609aa8b82 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/impl/EquipmentContainer$EquipmentListener.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/impl/EquipmentContainer.class b/CompiledServer/production/Server/org/crandor/game/container/impl/EquipmentContainer.class new file mode 100644 index 000000000..d3fa879f1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/impl/EquipmentContainer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/container/impl/InventoryListener.class b/CompiledServer/production/Server/org/crandor/game/container/impl/InventoryListener.class new file mode 100644 index 000000000..68fd95569 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/container/impl/InventoryListener.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/activity/ActivityManager.class b/CompiledServer/production/Server/org/crandor/game/content/activity/ActivityManager.class new file mode 100644 index 000000000..1ad32f182 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/activity/ActivityManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/activity/ActivityPlugin.class b/CompiledServer/production/Server/org/crandor/game/content/activity/ActivityPlugin.class new file mode 100644 index 000000000..c4dd04dce Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/activity/ActivityPlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin$EndPulse.class b/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin$EndPulse.class new file mode 100644 index 000000000..74ae88719 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin$EndPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin$StartPulse.class b/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin$StartPulse.class new file mode 100644 index 000000000..5cf1df9a7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin$StartPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin.class b/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin.class new file mode 100644 index 000000000..9c0d052bc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/activity/CutscenePlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroDialogue$1.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroDialogue$1.class new file mode 100644 index 000000000..6f0423fdc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroDialogue$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroDialogue.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroDialogue.class new file mode 100644 index 000000000..8be3b293a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroDialogue.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroEvent.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroEvent.class new file mode 100644 index 000000000..0ec2f3dc2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroHandler.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroHandler.class new file mode 100644 index 000000000..fa75be97c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC$1.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC$1.class new file mode 100644 index 000000000..9dce39bc9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC$2.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC$2.class new file mode 100644 index 000000000..e149fc91e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC.class b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC.class new file mode 100644 index 000000000..4aaaa91c1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/AntiMacroNPC.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/ame/ExperienceMonitor.class b/CompiledServer/production/Server/org/crandor/game/content/ame/ExperienceMonitor.class new file mode 100644 index 000000000..aaa90db42 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/ame/ExperienceMonitor.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialogueAction.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialogueAction.class new file mode 100644 index 000000000..7f73bebb3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialogueAction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialogueInterpreter.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialogueInterpreter.class new file mode 100644 index 000000000..16b052c49 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialogueInterpreter.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialoguePlugin.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialoguePlugin.class new file mode 100644 index 000000000..fb6eff4df Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/DialoguePlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/FacialExpression.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/FacialExpression.class new file mode 100644 index 000000000..62a36610a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/FacialExpression.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$1.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$1.class new file mode 100644 index 000000000..9399fae78 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$1.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$1.class new file mode 100644 index 000000000..30f23fdce Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$2.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$2.class new file mode 100644 index 000000000..21e1f17b6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$3.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$3.class new file mode 100644 index 000000000..ca158e1c7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$4.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$4.class new file mode 100644 index 000000000..cc07bb130 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$5.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$5.class new file mode 100644 index 000000000..ef864432b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue.class new file mode 100644 index 000000000..48c278dad Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler$SkillDialogue.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler.class new file mode 100644 index 000000000..27775a814 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/SkillDialogueHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/Book.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/Book.class new file mode 100644 index 000000000..944ecb8d1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/Book.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/BookLine.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/BookLine.class new file mode 100644 index 000000000..9b27f43d0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/BookLine.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/Page.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/Page.class new file mode 100644 index 000000000..c0967cfa3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/Page.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/PageSet.class b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/PageSet.class new file mode 100644 index 000000000..a7c477be4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/dialogue/book/PageSet.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/EcoStatus.class b/CompiledServer/production/Server/org/crandor/game/content/eco/EcoStatus.class new file mode 100644 index 000000000..2a80acc39 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/EcoStatus.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/EconomyManagement.class b/CompiledServer/production/Server/org/crandor/game/content/eco/EconomyManagement.class new file mode 100644 index 000000000..48085fc21 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/EconomyManagement.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/BuyingLimitation.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/BuyingLimitation.class new file mode 100644 index 000000000..95280288a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/BuyingLimitation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice$GuideItem.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice$GuideItem.class new file mode 100644 index 000000000..39b389f0c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice$GuideItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice$GuideType.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice$GuideType.class new file mode 100644 index 000000000..704c8b3f0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice$GuideType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice.class new file mode 100644 index 000000000..b0e202387 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEGuidePrice.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEItemSet.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEItemSet.class new file mode 100644 index 000000000..54fe4dffa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEItemSet.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEOfferDispatch$1.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEOfferDispatch$1.class new file mode 100644 index 000000000..639ebc239 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEOfferDispatch$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEOfferDispatch.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEOfferDispatch.class new file mode 100644 index 000000000..3337c37d2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GEOfferDispatch.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$1.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$1.class new file mode 100644 index 000000000..d65415842 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$2.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$2.class new file mode 100644 index 000000000..3d7cd57dc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$3.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$3.class new file mode 100644 index 000000000..d3d1e8e44 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$4.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$4.class new file mode 100644 index 000000000..e27600a99 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange.class new file mode 100644 index 000000000..2e567ebc7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchange.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeDatabase.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeDatabase.class new file mode 100644 index 000000000..1534e68a3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeDatabase.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeEntry.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeEntry.class new file mode 100644 index 000000000..741c5da51 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeOffer.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeOffer.class new file mode 100644 index 000000000..0900c4305 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/GrandExchangeOffer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/OfferState.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/OfferState.class new file mode 100644 index 000000000..0c890f1c5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/OfferState.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/eco/ge/ResourceManager.class b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/ResourceManager.class new file mode 100644 index 000000000..8d33e0555 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/eco/ge/ResourceManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/BirdNest.class b/CompiledServer/production/Server/org/crandor/game/content/global/BirdNest.class new file mode 100644 index 000000000..03c9f5969 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/BirdNest.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/Bones.class b/CompiledServer/production/Server/org/crandor/game/content/global/Bones.class new file mode 100644 index 000000000..0b1c35c97 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/Bones.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/BossKillCounter.class b/CompiledServer/production/Server/org/crandor/game/content/global/BossKillCounter.class new file mode 100644 index 000000000..32e5c003f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/BossKillCounter.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/Dyes.class b/CompiledServer/production/Server/org/crandor/game/content/global/Dyes.class new file mode 100644 index 000000000..b8a4fbdb0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/Dyes.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/EnchantedJewellery$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/EnchantedJewellery$1.class new file mode 100644 index 000000000..21179a6a3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/EnchantedJewellery$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/EnchantedJewellery.class b/CompiledServer/production/Server/org/crandor/game/content/global/EnchantedJewellery.class new file mode 100644 index 000000000..0eb3c57d8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/EnchantedJewellery.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/GodBook.class b/CompiledServer/production/Server/org/crandor/game/content/global/GodBook.class new file mode 100644 index 000000000..77f3b5687 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/GodBook.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/GodType$1$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/GodType$1$1.class new file mode 100644 index 000000000..154e306ca Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/GodType$1$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/GodType$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/GodType$1.class new file mode 100644 index 000000000..dcd78968c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/GodType$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/GodType.class b/CompiledServer/production/Server/org/crandor/game/content/global/GodType.class new file mode 100644 index 000000000..2557551a4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/GodType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/Lamps.class b/CompiledServer/production/Server/org/crandor/game/content/global/Lamps.class new file mode 100644 index 000000000..567309fc4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/Lamps.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/LightSource.class b/CompiledServer/production/Server/org/crandor/game/content/global/LightSource.class new file mode 100644 index 000000000..89c25cba9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/LightSource.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/RepairItem.class b/CompiledServer/production/Server/org/crandor/game/content/global/RepairItem.class new file mode 100644 index 000000000..d2a5bf0ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/RepairItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/Skillcape.class b/CompiledServer/production/Server/org/crandor/game/content/global/Skillcape.class new file mode 100644 index 000000000..b2d6cc597 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/Skillcape.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/SkillcapePerks.class b/CompiledServer/production/Server/org/crandor/game/content/global/SkillcapePerks.class new file mode 100644 index 000000000..014569370 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/SkillcapePerks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/SkillingPets.class b/CompiledServer/production/Server/org/crandor/game/content/global/SkillingPets.class new file mode 100644 index 000000000..05b6022ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/SkillingPets.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$1.class new file mode 100644 index 000000000..113397f43 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue$1.class new file mode 100644 index 000000000..fb1f91193 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue$2.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue$2.class new file mode 100644 index 000000000..8ecf4b38d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue.class new file mode 100644 index 000000000..12ed0e90b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler$ClimbDialogue.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler.class new file mode 100644 index 000000000..2bd47caaf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/ClimbActionHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DigAction.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DigAction.class new file mode 100644 index 000000000..0a85f1acf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DigAction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DigSpadeHandler$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DigSpadeHandler$1.class new file mode 100644 index 000000000..0917a8266 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DigSpadeHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DigSpadeHandler.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DigSpadeHandler.class new file mode 100644 index 000000000..604d213e0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DigSpadeHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler$1.class new file mode 100644 index 000000000..5b9bf17cb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler$2.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler$2.class new file mode 100644 index 000000000..6058a5453 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler.class new file mode 100644 index 000000000..7902b49b3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DoorActionHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/DropItemHandler.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/DropItemHandler.class new file mode 100644 index 000000000..526ffc0aa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/DropItemHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/EquipHandler.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/EquipHandler.class new file mode 100644 index 000000000..2552008ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/EquipHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/action/PickupHandler.class b/CompiledServer/production/Server/org/crandor/game/content/global/action/PickupHandler.class new file mode 100644 index 000000000..654d32fe4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/action/PickupHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Consumable.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Consumable.class new file mode 100644 index 000000000..4790c8d78 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Consumable.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/ConsumableProperties.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/ConsumableProperties.class new file mode 100644 index 000000000..110bf61b0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/ConsumableProperties.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Consumables.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Consumables.class new file mode 100644 index 000000000..a04779e60 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Consumables.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/CookingProperties.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/CookingProperties.class new file mode 100644 index 000000000..e8ca9e3ac Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/CookingProperties.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Drink.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Drink.class new file mode 100644 index 000000000..bfae303e7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Drink.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Food.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Food.class new file mode 100644 index 000000000..c435032ca Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Food.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Potion.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Potion.class new file mode 100644 index 000000000..c09ce2f7d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/Potion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/PotionEffect$Effect.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/PotionEffect$Effect.class new file mode 100644 index 000000000..78d03e2b5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/PotionEffect$Effect.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/consumable/PotionEffect.class b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/PotionEffect.class new file mode 100644 index 000000000..6ddf476e3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/consumable/PotionEffect.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/presets/Preset.class b/CompiledServer/production/Server/org/crandor/game/content/global/presets/Preset.class new file mode 100644 index 000000000..ac9f53dd3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/presets/Preset.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/presets/PresetManager.class b/CompiledServer/production/Server/org/crandor/game/content/global/presets/PresetManager.class new file mode 100644 index 000000000..2fa792e7d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/presets/PresetManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/report/AbuseReport.class b/CompiledServer/production/Server/org/crandor/game/content/global/report/AbuseReport.class new file mode 100644 index 000000000..e552d5074 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/report/AbuseReport.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/report/Rule.class b/CompiledServer/production/Server/org/crandor/game/content/global/report/Rule.class new file mode 100644 index 000000000..6b376d789 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/report/Rule.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/shop/Shop.class b/CompiledServer/production/Server/org/crandor/game/content/global/shop/Shop.class new file mode 100644 index 000000000..ee67638ff Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/shop/Shop.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/shop/ShopViewer$ShopCloseEvent.class b/CompiledServer/production/Server/org/crandor/game/content/global/shop/ShopViewer$ShopCloseEvent.class new file mode 100644 index 000000000..37921cc04 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/shop/ShopViewer$ShopCloseEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/shop/ShopViewer.class b/CompiledServer/production/Server/org/crandor/game/content/global/shop/ShopViewer.class new file mode 100644 index 000000000..1d3dd6983 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/shop/ShopViewer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport$1.class new file mode 100644 index 000000000..85dc7ee0c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport$Wizard.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport$Wizard.class new file mode 100644 index 000000000..4fa0aa5dc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport$Wizard.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport.class new file mode 100644 index 000000000..8985d96cb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/EssenceTeleport.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/MinigameGroupFinder$MinigameOptions.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/MinigameGroupFinder$MinigameOptions.class new file mode 100644 index 000000000..d123b5f48 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/MinigameGroupFinder$MinigameOptions.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/MinigameGroupFinder.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/MinigameGroupFinder.class new file mode 100644 index 000000000..5728bf948 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/MinigameGroupFinder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/Canoe.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/Canoe.class new file mode 100644 index 000000000..0142bd18c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/Canoe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$1.class new file mode 100644 index 000000000..4b0c42b72 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$2.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$2.class new file mode 100644 index 000000000..e6c59677e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$3.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$3.class new file mode 100644 index 000000000..848bece12 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$4.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$4.class new file mode 100644 index 000000000..a2a6a592e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$5.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$5.class new file mode 100644 index 000000000..8efa79b2a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension.class new file mode 100644 index 000000000..4c1fb991b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeExtension.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeStation$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeStation$1.class new file mode 100644 index 000000000..e482b7ac8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeStation$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeStation.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeStation.class new file mode 100644 index 000000000..c793d2a47 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/canoe/CanoeStation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/glider/GliderPulse.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/glider/GliderPulse.class new file mode 100644 index 000000000..800bf4156 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/glider/GliderPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/glider/Gliders.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/glider/Gliders.class new file mode 100644 index 000000000..f0ea1c17a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/glider/Gliders.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter$Destination$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter$Destination$1.class new file mode 100644 index 000000000..fb7e93d41 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter$Destination$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter$Destination.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter$Destination.class new file mode 100644 index 000000000..2a8ebf178 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter$Destination.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter.class new file mode 100644 index 000000000..baba23ca3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipCharter.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipTravellPulse.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipTravellPulse.class new file mode 100644 index 000000000..3960f873b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/ShipTravellPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/Ships.class b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/Ships.class new file mode 100644 index 000000000..3366ca427 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/travel/ship/Ships.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueLevel$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueLevel$1.class new file mode 100644 index 000000000..81dfbdadc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueLevel$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueLevel.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueLevel.class new file mode 100644 index 000000000..d1c0ac549 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueLevel.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueScrollPlugin.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueScrollPlugin.class new file mode 100644 index 000000000..5c601f9e6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/ClueScrollPlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/CoordinateClueScroll.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/CoordinateClueScroll.class new file mode 100644 index 000000000..6aa6ac2d0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/CoordinateClueScroll.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/EmoteClueScroll.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/EmoteClueScroll.class new file mode 100644 index 000000000..84d68d70e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/EmoteClueScroll.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/MapClueScroll$MapDigAction.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/MapClueScroll$MapDigAction.class new file mode 100644 index 000000000..440873213 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/MapClueScroll$MapDigAction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/MapClueScroll.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/MapClueScroll.class new file mode 100644 index 000000000..61109fb1d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/MapClueScroll.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/TreasureTrailManager.class b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/TreasureTrailManager.class new file mode 100644 index 000000000..14e86ad09 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/ttrail/TreasureTrailManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/CharacterDesign$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/CharacterDesign$1.class new file mode 100644 index 000000000..fbf67cf81 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/CharacterDesign$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/CharacterDesign.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/CharacterDesign.class new file mode 100644 index 000000000..5c018199f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/CharacterDesign.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialSession$DelayPulse.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialSession$DelayPulse.class new file mode 100644 index 000000000..ffa674240 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialSession$DelayPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialSession.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialSession.class new file mode 100644 index 000000000..8c895e36a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialSession.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$1$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$1$1.class new file mode 100644 index 000000000..7c1eaf187 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$1$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$1.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$1.class new file mode 100644 index 000000000..56b48d53a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$10.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$10.class new file mode 100644 index 000000000..8c648b9e1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$10.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$11.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$11.class new file mode 100644 index 000000000..44a9666dd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$11.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$12.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$12.class new file mode 100644 index 000000000..1cf35dc32 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$12.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$13.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$13.class new file mode 100644 index 000000000..3aab44650 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$13.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$14.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$14.class new file mode 100644 index 000000000..56e6ec6c6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$14.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$15.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$15.class new file mode 100644 index 000000000..4e35d2593 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$15.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$16.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$16.class new file mode 100644 index 000000000..b7f8d72ff Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$16.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$17.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$17.class new file mode 100644 index 000000000..9170579d3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$17.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$18.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$18.class new file mode 100644 index 000000000..887294ab0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$18.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$19.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$19.class new file mode 100644 index 000000000..c975f7c5e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$19.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$2.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$2.class new file mode 100644 index 000000000..b3a7f2722 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$20.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$20.class new file mode 100644 index 000000000..811d02264 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$20.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$21.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$21.class new file mode 100644 index 000000000..884cb1dd2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$21.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$22.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$22.class new file mode 100644 index 000000000..9b04511d2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$22.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$23.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$23.class new file mode 100644 index 000000000..d01f1e818 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$23.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$24.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$24.class new file mode 100644 index 000000000..c7570a2ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$24.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$25.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$25.class new file mode 100644 index 000000000..d63882d54 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$25.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$26.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$26.class new file mode 100644 index 000000000..afd6238a5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$26.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$27.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$27.class new file mode 100644 index 000000000..200ca372e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$27.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$28.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$28.class new file mode 100644 index 000000000..0e3ee2807 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$28.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$29.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$29.class new file mode 100644 index 000000000..e63489a5a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$29.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$3.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$3.class new file mode 100644 index 000000000..8fbe8156d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$30.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$30.class new file mode 100644 index 000000000..05a824464 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$30.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$31.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$31.class new file mode 100644 index 000000000..be56b9ca9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$31.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$32.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$32.class new file mode 100644 index 000000000..1b524f14d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$32.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$33.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$33.class new file mode 100644 index 000000000..810d0139d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$33.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$34.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$34.class new file mode 100644 index 000000000..ef207a9b7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$34.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$35.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$35.class new file mode 100644 index 000000000..c1c220b55 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$35.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$36.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$36.class new file mode 100644 index 000000000..9f9aa60e6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$36.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$37.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$37.class new file mode 100644 index 000000000..30981c917 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$37.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$38.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$38.class new file mode 100644 index 000000000..332c1a6e6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$38.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$39.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$39.class new file mode 100644 index 000000000..1aedf7e23 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$39.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$4.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$4.class new file mode 100644 index 000000000..537bef591 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$40.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$40.class new file mode 100644 index 000000000..d540bfa94 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$40.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$41.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$41.class new file mode 100644 index 000000000..4c9a8ecc4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$41.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$42.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$42.class new file mode 100644 index 000000000..e660e95f9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$42.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$43.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$43.class new file mode 100644 index 000000000..a65c34245 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$43.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$44.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$44.class new file mode 100644 index 000000000..6fd7156c1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$44.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$45.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$45.class new file mode 100644 index 000000000..0a3b5b43a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$45.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$46.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$46.class new file mode 100644 index 000000000..b49d86648 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$46.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$47.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$47.class new file mode 100644 index 000000000..63da7fa8d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$47.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$48.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$48.class new file mode 100644 index 000000000..07bc2544e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$48.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$49.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$49.class new file mode 100644 index 000000000..c333a23f3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$49.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$5.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$5.class new file mode 100644 index 000000000..0f766ff81 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$50.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$50.class new file mode 100644 index 000000000..d7e2a8c85 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$50.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$51.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$51.class new file mode 100644 index 000000000..e77a299d2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$51.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$52.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$52.class new file mode 100644 index 000000000..5c28e28a1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$52.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$53.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$53.class new file mode 100644 index 000000000..6545a49cf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$53.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$54.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$54.class new file mode 100644 index 000000000..993cbba69 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$54.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$55.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$55.class new file mode 100644 index 000000000..0b5c285b9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$55.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$56.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$56.class new file mode 100644 index 000000000..6908cfbe4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$56.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$57.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$57.class new file mode 100644 index 000000000..ef21c9c77 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$57.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$58.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$58.class new file mode 100644 index 000000000..8008bc40e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$58.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$59.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$59.class new file mode 100644 index 000000000..6d84c2008 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$59.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$6.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$6.class new file mode 100644 index 000000000..82578775f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$60.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$60.class new file mode 100644 index 000000000..72061c5da Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$60.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$61.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$61.class new file mode 100644 index 000000000..a8b1f18e2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$61.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$62.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$62.class new file mode 100644 index 000000000..790b6da39 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$62.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$63.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$63.class new file mode 100644 index 000000000..1cb683c8a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$63.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$64.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$64.class new file mode 100644 index 000000000..af55f1fe4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$64.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$65.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$65.class new file mode 100644 index 000000000..a4d534509 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$65.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$66.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$66.class new file mode 100644 index 000000000..80da60e57 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$66.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$67.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$67.class new file mode 100644 index 000000000..cd5a09209 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$67.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$68.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$68.class new file mode 100644 index 000000000..400b30e1d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$68.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$69.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$69.class new file mode 100644 index 000000000..9d4696a80 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$69.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$7.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$7.class new file mode 100644 index 000000000..7df5f9307 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$70.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$70.class new file mode 100644 index 000000000..d98e3b995 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$70.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$71.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$71.class new file mode 100644 index 000000000..3442bc307 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$71.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$72.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$72.class new file mode 100644 index 000000000..329062e94 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$72.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$8.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$8.class new file mode 100644 index 000000000..c7f1f65f1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$8.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$9.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$9.class new file mode 100644 index 000000000..2b67380c9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage$9.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage.class b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage.class new file mode 100644 index 000000000..e9c86cd6a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/global/tutorial/TutorialStage.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayEvent.class b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayEvent.class new file mode 100644 index 000000000..17d633a4f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayItem$1.class b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayItem$1.class new file mode 100644 index 000000000..0cff4181f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayItem$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayItem.class b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayItem.class new file mode 100644 index 000000000..0b177b35b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayType.class b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayType.class new file mode 100644 index 000000000..d0f986c48 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/holiday/HolidayType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/holiday/ItemLimitation.class b/CompiledServer/production/Server/org/crandor/game/content/holiday/ItemLimitation.class new file mode 100644 index 000000000..1db6825e9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/holiday/ItemLimitation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/LevelUp.class b/CompiledServer/production/Server/org/crandor/game/content/skill/LevelUp.class new file mode 100644 index 000000000..082004c02 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/LevelUp.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/SkillBonus.class b/CompiledServer/production/Server/org/crandor/game/content/skill/SkillBonus.class new file mode 100644 index 000000000..7d6a790fd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/SkillBonus.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/SkillPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/SkillPulse.class new file mode 100644 index 000000000..3fe3479b3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/SkillPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/SkillRestoration.class b/CompiledServer/production/Server/org/crandor/game/content/skill/SkillRestoration.class new file mode 100644 index 000000000..c93470b82 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/SkillRestoration.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/Skills.class b/CompiledServer/production/Server/org/crandor/game/content/skill/Skills.class new file mode 100644 index 000000000..c742cf46e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/Skills.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/CookingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/CookingPulse.class new file mode 100644 index 000000000..5d7c0be1c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/CookingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/dairy/DairyChurnPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/dairy/DairyChurnPulse.class new file mode 100644 index 000000000..e34eafdff Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/dairy/DairyChurnPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/dairy/DairyProduct.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/dairy/DairyProduct.class new file mode 100644 index 000000000..17ecf902f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/dairy/DairyProduct.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/fermenting/WineFermentingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/fermenting/WineFermentingPulse.class new file mode 100644 index 000000000..ac204a01b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/fermenting/WineFermentingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/Recipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/Recipe.class new file mode 100644 index 000000000..d24a52e5e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/Recipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/cake/ChocolateCake.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/cake/ChocolateCake.class new file mode 100644 index 000000000..529524238 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/cake/ChocolateCake.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/PieRecipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/PieRecipe.class new file mode 100644 index 000000000..b9ac36f68 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/PieRecipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/AdmiralPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/AdmiralPie.class new file mode 100644 index 000000000..a3cdbc6a6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/AdmiralPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/ApplePie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/ApplePie.class new file mode 100644 index 000000000..b9f019c6f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/ApplePie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/FishPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/FishPie.class new file mode 100644 index 000000000..403f1bd32 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/FishPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/GardenPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/GardenPie.class new file mode 100644 index 000000000..af8153d0c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/GardenPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/MeatPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/MeatPie.class new file mode 100644 index 000000000..cab5ad29b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/MeatPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/MudPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/MudPie.class new file mode 100644 index 000000000..a940550a4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/MudPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/RedberryPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/RedberryPie.class new file mode 100644 index 000000000..b9211cfe6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/RedberryPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/SummerPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/SummerPie.class new file mode 100644 index 000000000..b55b60eee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/SummerPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/WildPie.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/WildPie.class new file mode 100644 index 000000000..e66a197b6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pie/impl/WildPie.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/PizzaRecipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/PizzaRecipe.class new file mode 100644 index 000000000..43d6578ca Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/PizzaRecipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/AnchovyPizza.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/AnchovyPizza.class new file mode 100644 index 000000000..1aaac50a7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/AnchovyPizza.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/MeatPizza.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/MeatPizza.class new file mode 100644 index 000000000..a91f8d35b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/MeatPizza.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/PineapplePizza.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/PineapplePizza.class new file mode 100644 index 000000000..4847ec46c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/PineapplePizza.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/PlainPizza.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/PlainPizza.class new file mode 100644 index 000000000..4bfba20ce Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/pizza/impl/PlainPizza.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/PotatoRecipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/PotatoRecipe.class new file mode 100644 index 000000000..24ad085d1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/PotatoRecipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/ButterPotato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/ButterPotato.class new file mode 100644 index 000000000..b7dfac4c0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/ButterPotato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/CheesePotato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/CheesePotato.class new file mode 100644 index 000000000..ddb90de8d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/CheesePotato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/ChilliPotato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/ChilliPotato.class new file mode 100644 index 000000000..4904fb28a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/ChilliPotato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/EggPotato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/EggPotato.class new file mode 100644 index 000000000..b47b34e2b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/EggPotato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/MushroomPotato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/MushroomPotato.class new file mode 100644 index 000000000..b2afc72ce Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/MushroomPotato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/TunaPotato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/TunaPotato.class new file mode 100644 index 000000000..88045108f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/potato/impl/TunaPotato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/stew/CurryRecipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/stew/CurryRecipe.class new file mode 100644 index 000000000..d222217cc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/stew/CurryRecipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/stew/StewRecipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/stew/StewRecipe.class new file mode 100644 index 000000000..04253235d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/stew/StewRecipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/ToppingRecipe.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/ToppingRecipe.class new file mode 100644 index 000000000..4a70ccaab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/ToppingRecipe.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChilliConCarne.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChilliConCarne.class new file mode 100644 index 000000000..6de7371df Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChilliConCarne.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChoppedOnion.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChoppedOnion.class new file mode 100644 index 000000000..b863b8a87 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChoppedOnion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChoppedTuna.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChoppedTuna.class new file mode 100644 index 000000000..ab10b7188 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/ChoppedTuna.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/EggAndTomato.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/EggAndTomato.class new file mode 100644 index 000000000..c7093736c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/EggAndTomato.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/MushroomAndOnion.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/MushroomAndOnion.class new file mode 100644 index 000000000..09569aac1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/MushroomAndOnion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/SlicedMushroom.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/SlicedMushroom.class new file mode 100644 index 000000000..72c8237e4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/SlicedMushroom.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/SpicySauce.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/SpicySauce.class new file mode 100644 index 000000000..3aa3bbbb6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/SpicySauce.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/TunaAndCorn.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/TunaAndCorn.class new file mode 100644 index 000000000..75806e6fd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/TunaAndCorn.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/UncookedEgg.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/UncookedEgg.class new file mode 100644 index 000000000..45fdba4b7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/cooking/recipe/topping/impl/UncookedEgg.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/BattleStaves.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/BattleStaves.class new file mode 100644 index 000000000..24a9d2b6b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/BattleStaves.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/GlassProduct.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/GlassProduct.class new file mode 100644 index 000000000..07ab39c97 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/GlassProduct.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/SilverProduct.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/SilverProduct.class new file mode 100644 index 000000000..9b85b9938 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/SilverProduct.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/TanningProduct.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/TanningProduct.class new file mode 100644 index 000000000..4831e0309 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/TanningProduct.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class new file mode 100644 index 000000000..66614d6a8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class new file mode 100644 index 000000000..4dd964ce0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting$DragonHide.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting$DragonHide.class new file mode 100644 index 000000000..34f2a7727 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting$DragonHide.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting$SoftLeather.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting$SoftLeather.class new file mode 100644 index 000000000..8e1783bd3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting$SoftLeather.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting.class new file mode 100644 index 000000000..44102fe7b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/LeatherCrafting.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SnakeSkin.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SnakeSkin.class new file mode 100644 index 000000000..5fcd02b75 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SnakeSkin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class new file mode 100644 index 000000000..ea37a5278 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class new file mode 100644 index 000000000..0af76ef5e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class new file mode 100644 index 000000000..6496f2198 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/gem/Gems.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/gem/Gems.class new file mode 100644 index 000000000..5d60371ee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/gem/Gems.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryCrafting$JewelleryItem.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryCrafting$JewelleryItem.class new file mode 100644 index 000000000..d7d0f8a53 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryCrafting$JewelleryItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryCrafting.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryCrafting.class new file mode 100644 index 000000000..afe50991a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryCrafting.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class new file mode 100644 index 000000000..5c9235c12 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class new file mode 100644 index 000000000..0e76e426b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/PotteryItem.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/PotteryItem.class new file mode 100644 index 000000000..94712b02e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/PotteryItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class new file mode 100644 index 000000000..981ce4351 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/spinning/SpinningItem.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/spinning/SpinningItem.class new file mode 100644 index 000000000..e8abdb44e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/spinning/SpinningItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class new file mode 100644 index 000000000..02ee8a0ec Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/firemaking/FireMakingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/firemaking/FireMakingPulse.class new file mode 100644 index 000000000..ab0f4aad4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/firemaking/FireMakingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/firemaking/Log.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/firemaking/Log.class new file mode 100644 index 000000000..60e2d51ff Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/firemaking/Log.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/Fish.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/Fish.class new file mode 100644 index 000000000..6a64e895d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/Fish.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishSpots.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishSpots.class new file mode 100644 index 000000000..583ef49ef Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishSpots.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingOption.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingOption.class new file mode 100644 index 000000000..e31e52e29 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingOption.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingPulse$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingPulse$1.class new file mode 100644 index 000000000..c1c882a19 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingPulse$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingPulse.class new file mode 100644 index 000000000..3272d4248 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingSpot.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingSpot.class new file mode 100644 index 000000000..be81eb7aa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/fishing/FishingSpot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class new file mode 100644 index 000000000..8052c41a0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/SkillingResource.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/SkillingResource.class new file mode 100644 index 000000000..923ee08fa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/SkillingResource.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/SkillingTool.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/SkillingTool.class new file mode 100644 index 000000000..cd62f6da2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/gather/SkillingTool.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/MagicSpell.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/MagicSpell.class new file mode 100644 index 000000000..17943a020 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/MagicSpell.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/MagicStaff.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/MagicStaff.class new file mode 100644 index 000000000..e421856d0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/MagicStaff.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/Runes.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/Runes.class new file mode 100644 index 000000000..637f5f9b3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/magic/Runes.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Altar.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Altar.class new file mode 100644 index 000000000..6b48139b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Altar.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/CombinationRune.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/CombinationRune.class new file mode 100644 index 000000000..bb59b806e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/CombinationRune.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/EnchantTiaraPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/EnchantTiaraPulse.class new file mode 100644 index 000000000..2a4f7ca99 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/EnchantTiaraPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/MysteriousRuin.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/MysteriousRuin.class new file mode 100644 index 000000000..4b2a66d80 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/MysteriousRuin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Rune.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Rune.class new file mode 100644 index 000000000..f9bcbbc23 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Rune.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class new file mode 100644 index 000000000..1f3ac3239 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/RunePouch.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/RunePouch.class new file mode 100644 index 000000000..7446b7d3f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/RunePouch.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Talisman.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Talisman.class new file mode 100644 index 000000000..73f36566d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Talisman.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Tiara.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Tiara.class new file mode 100644 index 000000000..d999c240e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/runecrafting/Tiara.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/BarType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/BarType.class new file mode 100644 index 000000000..3d6afdcf6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/BarType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/Bars.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/Bars.class new file mode 100644 index 000000000..3f432657d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/Bars.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingBuilder.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingBuilder.class new file mode 100644 index 000000000..d40aa5aad Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingPulse.class new file mode 100644 index 000000000..c44342e72 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingType.class new file mode 100644 index 000000000..560e68d1e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/SmithingType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/smelting/Bar.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/smelting/Bar.class new file mode 100644 index 000000000..404195a7b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/smelting/Bar.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/smelting/SmeltingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/smelting/SmeltingPulse.class new file mode 100644 index 000000000..48d1e0646 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/free/smithing/smelting/SmeltingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityCourse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityCourse.class new file mode 100644 index 000000000..f54751fdf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityCourse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$1.class new file mode 100644 index 000000000..12a3106ac Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$2.class new file mode 100644 index 000000000..f98678b00 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$3.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$3.class new file mode 100644 index 000000000..43ddf1e10 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$4.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$4.class new file mode 100644 index 000000000..5af9a5eea Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$5.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$5.class new file mode 100644 index 000000000..2b17c2cab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$6.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$6.class new file mode 100644 index 000000000..41fe0c112 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$7.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$7.class new file mode 100644 index 000000000..6e39e0e7a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$8.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$8.class new file mode 100644 index 000000000..5eaa21b45 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler$8.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler.class new file mode 100644 index 000000000..428a95bde Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityShortcut.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityShortcut.class new file mode 100644 index 000000000..37d75142b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/agility/AgilityShortcut.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildHotspot.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildHotspot.class new file mode 100644 index 000000000..84eacf2f2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildHotspot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildHotspotType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildHotspotType.class new file mode 100644 index 000000000..67c0b9860 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildHotspotType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils$1.class new file mode 100644 index 000000000..4205b6ec2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils$2.class new file mode 100644 index 000000000..abdb6428a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils.class new file mode 100644 index 000000000..2a353e1cc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/BuildingUtils.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/CrestType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/CrestType.class new file mode 100644 index 000000000..af8303607 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/CrestType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Decoration.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Decoration.class new file mode 100644 index 000000000..71cd50e43 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Decoration.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Hotspot.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Hotspot.class new file mode 100644 index 000000000..72d97a0d4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Hotspot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseLocation.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseLocation.class new file mode 100644 index 000000000..6ee47705e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseLocation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseManager$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseManager$1.class new file mode 100644 index 000000000..65dd4022f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseManager.class new file mode 100644 index 000000000..f9aa1a731 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseZone.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseZone.class new file mode 100644 index 000000000..818cdd666 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HouseZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HousingStyle.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HousingStyle.class new file mode 100644 index 000000000..221d01849 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/HousingStyle.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/NailType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/NailType.class new file mode 100644 index 000000000..aa6dd3d86 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/NailType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Room$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Room$1.class new file mode 100644 index 000000000..a2ab65981 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Room$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Room.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Room.class new file mode 100644 index 000000000..3d8829f6d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Room.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomBuilder$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomBuilder$1.class new file mode 100644 index 000000000..e78717eea Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomBuilder$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomBuilder.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomBuilder.class new file mode 100644 index 000000000..25c8566e0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomProperties.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomProperties.class new file mode 100644 index 000000000..e96e10bb4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/RoomProperties.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Servant.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Servant.class new file mode 100644 index 000000000..4e54e6550 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/Servant.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/ServantType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/ServantType.class new file mode 100644 index 000000000..03cd75cd8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/construction/ServantType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingConstant.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingConstant.class new file mode 100644 index 000000000..465c7689f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingConstant.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingEquipment$StoreCloseEvent.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingEquipment$StoreCloseEvent.class new file mode 100644 index 000000000..f185bd3a2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingEquipment$StoreCloseEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingEquipment.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingEquipment.class new file mode 100644 index 000000000..2f5ed8096 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingEquipment.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingItemHolder.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingItemHolder.class new file mode 100644 index 000000000..132757317 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingItemHolder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingManager.class new file mode 100644 index 000000000..d7d0f397f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingNode.class new file mode 100644 index 000000000..4ca2efd73 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingPatch.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingPatch.class new file mode 100644 index 000000000..261aa6253 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingPatch.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingPulse.class new file mode 100644 index 000000000..b732c5fbf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/FarmingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin$FillBinPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin$FillBinPulse.class new file mode 100644 index 000000000..afce57163 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin$FillBinPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin$FillBucketPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin$FillBucketPulse.class new file mode 100644 index 000000000..cababf736 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin$FillBucketPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin.class new file mode 100644 index 000000000..23765a320 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostBin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostManager.class new file mode 100644 index 000000000..22731806c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/compost/CompostManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Allotments.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Allotments.class new file mode 100644 index 000000000..9e57daca3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Allotments.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/BushNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/BushNode.class new file mode 100644 index 000000000..e111a66e9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/BushNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Bushes$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Bushes$1.class new file mode 100644 index 000000000..24b9ca8d6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Bushes$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Bushes.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Bushes.class new file mode 100644 index 000000000..9972e8a5a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Bushes.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Flowers.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Flowers.class new file mode 100644 index 000000000..eba909bab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Flowers.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTreeNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTreeNode.class new file mode 100644 index 000000000..4989f83e8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTreeNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTrees$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTrees$1.class new file mode 100644 index 000000000..fed05774b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTrees$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTrees.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTrees.class new file mode 100644 index 000000000..0913e789f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/FruitTrees.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/HerbNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/HerbNode.class new file mode 100644 index 000000000..a976c0afd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/HerbNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Herbs.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Herbs.class new file mode 100644 index 000000000..006f0913c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Herbs.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Hops.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Hops.class new file mode 100644 index 000000000..ed4392f1a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Hops.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/PatchProtection.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/PatchProtection.class new file mode 100644 index 000000000..b8c95c4c6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/PatchProtection.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/PickingNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/PickingNode.class new file mode 100644 index 000000000..8cf1ec02a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/PickingNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$1.class new file mode 100644 index 000000000..4c8c6a6d9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$2.class new file mode 100644 index 000000000..a8535f5e9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$3.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$3.class new file mode 100644 index 000000000..8a6a974bd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode.class new file mode 100644 index 000000000..ce77efa84 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/SpecialNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/TreeNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/TreeNode.class new file mode 100644 index 000000000..1eaccd4a0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/TreeNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Trees.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Trees.class new file mode 100644 index 000000000..5c7a1ccf0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/patch/Trees.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/Saplings.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/Saplings.class new file mode 100644 index 000000000..1d6b6de00 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/Saplings.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/SeedlingManager$SeedlingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/SeedlingManager$SeedlingPulse.class new file mode 100644 index 000000000..2f46350d4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/SeedlingManager$SeedlingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/SeedlingManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/SeedlingManager.class new file mode 100644 index 000000000..ef8d9109e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/pot/SeedlingManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PatchTool.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PatchTool.class new file mode 100644 index 000000000..0e3770ae0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PatchTool.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PlantCurePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PlantCurePulse.class new file mode 100644 index 000000000..701120974 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PlantCurePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PlantPotPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PlantPotPulse.class new file mode 100644 index 000000000..81a8d4909 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/PlantPotPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/RakePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/RakePulse.class new file mode 100644 index 000000000..e586788d3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/RakePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/SecateurPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/SecateurPulse.class new file mode 100644 index 000000000..156f1bc99 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/SecateurPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class new file mode 100644 index 000000000..5cc9f75ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/SpadePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/ToolAction.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/ToolAction.class new file mode 100644 index 000000000..66e5280a4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/ToolAction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/WateringPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/WateringPulse.class new file mode 100644 index 000000000..b49e2c1de Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/tool/WateringPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchCycle.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchCycle.class new file mode 100644 index 000000000..5a6a87895 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchCycle.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor$1.class new file mode 100644 index 000000000..d0876ca48 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor$2.class new file mode 100644 index 000000000..0cb819353 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor.class new file mode 100644 index 000000000..68b85feb9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchInteractor.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchWrapper.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchWrapper.class new file mode 100644 index 000000000..2a19b606f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/PatchWrapper.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/DeathHandler.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/DeathHandler.class new file mode 100644 index 000000000..dbbce1df3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/DeathHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/DiseaseHandler.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/DiseaseHandler.class new file mode 100644 index 000000000..5e96ca611 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/DiseaseHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/GrowthHandler.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/GrowthHandler.class new file mode 100644 index 000000000..d7ed33125 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/GrowthHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/WaterHandler.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/WaterHandler.class new file mode 100644 index 000000000..ab674494b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/farming/wrapper/handler/WaterHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchItem.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchItem.class new file mode 100644 index 000000000..06ec16c29 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchType.class new file mode 100644 index 000000000..63ad99591 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class new file mode 100644 index 000000000..c9cb1c35d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchingPulse$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchingPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchingPulse.class new file mode 100644 index 000000000..5fb54d804 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/FletchingPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/ArrowHead.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/ArrowHead.class new file mode 100644 index 000000000..3aec4ae15 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/ArrowHead.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/ArrowHeadPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/ArrowHeadPulse.class new file mode 100644 index 000000000..3e136bc0f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/ArrowHeadPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/HeadlessArrowPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/HeadlessArrowPulse.class new file mode 100644 index 000000000..3352d513f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/arrow/HeadlessArrowPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bolts/Bolt.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bolts/Bolt.class new file mode 100644 index 000000000..3e031d836 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bolts/Bolt.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bolts/BoltPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bolts/BoltPulse.class new file mode 100644 index 000000000..64aab65aa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bolts/BoltPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bow/StringBow.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bow/StringBow.class new file mode 100644 index 000000000..7091b93e1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bow/StringBow.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bow/StringPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bow/StringPulse.class new file mode 100644 index 000000000..0aaaf1681 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/bow/StringPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/CrossbowPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/CrossbowPulse.class new file mode 100644 index 000000000..41b5f13f3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/CrossbowPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/Limb.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/Limb.class new file mode 100644 index 000000000..d224ec07c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/Limb.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/LimbPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/LimbPulse.class new file mode 100644 index 000000000..3fb273461 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/LimbPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/StringCross.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/StringCross.class new file mode 100644 index 000000000..9b20acac5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/crossbow/StringCross.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/darts/Dart.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/darts/Dart.class new file mode 100644 index 000000000..0998f13ba Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/darts/Dart.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/darts/DartPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/darts/DartPulse.class new file mode 100644 index 000000000..10530b324 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/darts/DartPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/Gem.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/Gem.class new file mode 100644 index 000000000..f8b275183 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/Gem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBolt.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBolt.class new file mode 100644 index 000000000..f3b18693a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBolt.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBoltCutPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBoltCutPulse.class new file mode 100644 index 000000000..145198e7c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBoltCutPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBoltPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBoltPulse.class new file mode 100644 index 000000000..d9927ecba Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/gem/GemBoltPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/grapple/GrapplePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/grapple/GrapplePulse.class new file mode 100644 index 000000000..255c85c07 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/fletching/items/grapple/GrapplePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/BarbarianPotion.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/BarbarianPotion.class new file mode 100644 index 000000000..efc821d25 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/BarbarianPotion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/FinishedPotion.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/FinishedPotion.class new file mode 100644 index 000000000..eea3de915 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/FinishedPotion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/GenericPotion.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/GenericPotion.class new file mode 100644 index 000000000..2e1bd473b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/GenericPotion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/GrindingItem.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/GrindingItem.class new file mode 100644 index 000000000..a148234cc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/GrindingItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class new file mode 100644 index 000000000..4fb7c1407 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/HerbTarPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/HerblorePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/HerblorePulse.class new file mode 100644 index 000000000..5a20481b0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/HerblorePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/Herbs.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/Herbs.class new file mode 100644 index 000000000..da4553416 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/Herbs.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/SuperCombatPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/SuperCombatPulse.class new file mode 100644 index 000000000..107b3a5c4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/SuperCombatPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/Tars.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/Tars.class new file mode 100644 index 000000000..3d716b3a6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/Tars.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/UnfinishedPotion.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/UnfinishedPotion.class new file mode 100644 index 000000000..502b8d140 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/herblore/UnfinishedPotion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/BoxTrapNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/BoxTrapNode.class new file mode 100644 index 000000000..7a2a8063d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/BoxTrapNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/DeadfallSetting.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/DeadfallSetting.class new file mode 100644 index 000000000..63dd33e4f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/DeadfallSetting.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/HunterGear.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/HunterGear.class new file mode 100644 index 000000000..64458ca7a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/HunterGear.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/HunterManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/HunterManager.class new file mode 100644 index 000000000..84db70272 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/HunterManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImpetuousImpulses.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImpetuousImpulses.class new file mode 100644 index 000000000..6ad65a404 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImpetuousImpulses.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImplingNPC$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImplingNPC$1.class new file mode 100644 index 000000000..ba1c56324 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImplingNPC$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImplingNPC.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImplingNPC.class new file mode 100644 index 000000000..886e563e4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/ImplingNPC.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/MagicBoxSetting.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/MagicBoxSetting.class new file mode 100644 index 000000000..9e49d7648 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/MagicBoxSetting.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/NetTrapSetting$NetTrap.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/NetTrapSetting$NetTrap.class new file mode 100644 index 000000000..5a95e9fed Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/NetTrapSetting$NetTrap.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/NetTrapSetting.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/NetTrapSetting.class new file mode 100644 index 000000000..7bfa90a59 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/NetTrapSetting.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapCreatePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapCreatePulse.class new file mode 100644 index 000000000..3b18074f4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapCreatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapDismantlePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapDismantlePulse.class new file mode 100644 index 000000000..bab9ef552 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapDismantlePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapHook.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapHook.class new file mode 100644 index 000000000..c2404f30b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapHook.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapNode.class new file mode 100644 index 000000000..2744c19ae Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapSetting$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapSetting$1.class new file mode 100644 index 000000000..163fb5a10 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapSetting$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapSetting.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapSetting.class new file mode 100644 index 000000000..ee3c046ef Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapSetting.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapWrapper.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapWrapper.class new file mode 100644 index 000000000..fe3bcde49 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/TrapWrapper.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/Traps$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/Traps$1.class new file mode 100644 index 000000000..ca8b5fb9a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/Traps$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/Traps.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/Traps.class new file mode 100644 index 000000000..a2354c1e9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/Traps.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class new file mode 100644 index 000000000..6d03cac7f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetPulse.class new file mode 100644 index 000000000..54a1ae3ee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetTypes.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetTypes.class new file mode 100644 index 000000000..e54b7e374 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/BNetTypes.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/ImplingNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/ImplingNode.class new file mode 100644 index 000000000..2e3eb0b22 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/bnet/ImplingNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconCatch.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconCatch.class new file mode 100644 index 000000000..cd29eebc6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconCatch.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconryCatchPulse$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconryCatchPulse$1.class new file mode 100644 index 000000000..0c6cb15d0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconryCatchPulse$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconryCatchPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconryCatchPulse.class new file mode 100644 index 000000000..7c0dbc582 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/hunter/falconry/FalconryCatchPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment$1.class new file mode 100644 index 000000000..d08f44f20 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment$2.class new file mode 100644 index 000000000..0cadfb831 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment.class new file mode 100644 index 000000000..0667d1530 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Equipment.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$1.class new file mode 100644 index 000000000..7c2ddb846 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$2.class new file mode 100644 index 000000000..8edba755a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$3.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$3.class new file mode 100644 index 000000000..c6e7b669f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$4.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$4.class new file mode 100644 index 000000000..a869ad0c3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$5.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$5.class new file mode 100644 index 000000000..0077bfca2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$6.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$6.class new file mode 100644 index 000000000..5b91d6575 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master.class new file mode 100644 index 000000000..27ba7e9cd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Master.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/MirrorShieldHandler.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/MirrorShieldHandler.class new file mode 100644 index 000000000..c008a57e7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/MirrorShieldHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/SlayerManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/SlayerManager.class new file mode 100644 index 000000000..0ca710c55 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/SlayerManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Task.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Task.class new file mode 100644 index 000000000..c6a7a5dba Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Task.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$1.class new file mode 100644 index 000000000..a8e017d82 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$10.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$10.class new file mode 100644 index 000000000..cf6d4cea4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$10.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$11.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$11.class new file mode 100644 index 000000000..6add8d230 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$11.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$12.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$12.class new file mode 100644 index 000000000..61c89bddc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$12.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$13.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$13.class new file mode 100644 index 000000000..9c783cb4e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$13.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$14.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$14.class new file mode 100644 index 000000000..650109386 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$14.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$15.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$15.class new file mode 100644 index 000000000..c64ae1bbc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$15.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$16.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$16.class new file mode 100644 index 000000000..bb0e41abe Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$16.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$2.class new file mode 100644 index 000000000..d1700ab00 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$3.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$3.class new file mode 100644 index 000000000..7b32c9584 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$4.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$4.class new file mode 100644 index 000000000..664eec228 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$5.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$5.class new file mode 100644 index 000000000..4555e9696 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$6.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$6.class new file mode 100644 index 000000000..80d1d943c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$7.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$7.class new file mode 100644 index 000000000..ece759253 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$8.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$8.class new file mode 100644 index 000000000..ddb1f5216 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$8.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$9.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$9.class new file mode 100644 index 000000000..9e6dc3118 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks$9.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks.class new file mode 100644 index 000000000..bc9ea75ad Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/slayer/Tasks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class new file mode 100644 index 000000000..0a0d573de Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator$CreatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class new file mode 100644 index 000000000..54e1345b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator$SummoningNode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator.class new file mode 100644 index 000000000..54b4122e1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningCreator.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningPouch.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningPouch.class new file mode 100644 index 000000000..1ec5ad01c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningPouch.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningScroll.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningScroll.class new file mode 100644 index 000000000..769efc117 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/SummoningScroll.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenBeast$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenBeast$1.class new file mode 100644 index 000000000..0e3e6db2f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenBeast$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenBeast.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenBeast.class new file mode 100644 index 000000000..30ff0fcc7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenBeast.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenContainerListener.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenContainerListener.class new file mode 100644 index 000000000..1d966dedc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/BurdenContainerListener.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar$1.class new file mode 100644 index 000000000..b50276511 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar$2.class new file mode 100644 index 000000000..cba86bd06 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar.class new file mode 100644 index 000000000..03416a473 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Familiar.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/FamiliarManager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/FamiliarManager.class new file mode 100644 index 000000000..700fb655d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/FamiliarManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/FamiliarSpecial.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/FamiliarSpecial.class new file mode 100644 index 000000000..b7430e937 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/FamiliarSpecial.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Forager.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Forager.class new file mode 100644 index 000000000..2b46eea69 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/Forager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$1.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$1.class new file mode 100644 index 000000000..8ed235329 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$2.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$2.class new file mode 100644 index 000000000..ec87e374a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$ViewType.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$ViewType.class new file mode 100644 index 000000000..1603c8fa3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer$ViewType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer.class new file mode 100644 index 000000000..4a7430a9d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/familiar/RemoteViewer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/IncubatorEgg.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/IncubatorEgg.class new file mode 100644 index 000000000..a4577031e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/IncubatorEgg.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/Pet.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/Pet.class new file mode 100644 index 000000000..e9e7b8201 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/Pet.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/PetDetails.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/PetDetails.class new file mode 100644 index 000000000..e4a6afcbc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/PetDetails.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/Pets.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/Pets.class new file mode 100644 index 000000000..dd095a885 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/summoning/pet/Pets.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/Pickpocket.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/Pickpocket.class new file mode 100644 index 000000000..c2b4de321 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/Pickpocket.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class new file mode 100644 index 000000000..b5458568f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/PickpocketPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/Stall.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/Stall.class new file mode 100644 index 000000000..079d18e63 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/Stall.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class new file mode 100644 index 000000000..783bcb8c7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/content/skill/member/thieving/StallThiefPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/events/GlobalEvent.class b/CompiledServer/production/Server/org/crandor/game/events/GlobalEvent.class new file mode 100644 index 000000000..984df9581 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/events/GlobalEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/events/GlobalEventManager$1.class b/CompiledServer/production/Server/org/crandor/game/events/GlobalEventManager$1.class new file mode 100644 index 000000000..01aa30e2c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/events/GlobalEventManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/events/GlobalEventManager.class b/CompiledServer/production/Server/org/crandor/game/events/GlobalEventManager.class new file mode 100644 index 000000000..0ac781560 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/events/GlobalEventManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$1.class b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$1.class new file mode 100644 index 000000000..47f89f536 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$2.class b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$2.class new file mode 100644 index 000000000..dc4588fc1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$3.class b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$3.class new file mode 100644 index 000000000..a1da26d54 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$4.class b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$4.class new file mode 100644 index 000000000..6b1633d40 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$5.class b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$5.class new file mode 100644 index 000000000..bf733839c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag.class b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag.class new file mode 100644 index 000000000..a4d1e0b65 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/DestinationFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$1.class b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$1.class new file mode 100644 index 000000000..ab542ee97 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$2.class b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$2.class new file mode 100644 index 000000000..3791b7a25 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$3.class b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$3.class new file mode 100644 index 000000000..aa278f920 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$4.class b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$4.class new file mode 100644 index 000000000..8ae9da46b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/Interaction.class b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction.class new file mode 100644 index 000000000..a133b46bd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/Interaction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/MovementPulse$1.class b/CompiledServer/production/Server/org/crandor/game/interaction/MovementPulse$1.class new file mode 100644 index 000000000..026a9e802 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/MovementPulse$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/MovementPulse.class b/CompiledServer/production/Server/org/crandor/game/interaction/MovementPulse.class new file mode 100644 index 000000000..9c4ed8b4a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/MovementPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/NodeUsageEvent.class b/CompiledServer/production/Server/org/crandor/game/interaction/NodeUsageEvent.class new file mode 100644 index 000000000..e87a20cf0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/NodeUsageEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/Option.class b/CompiledServer/production/Server/org/crandor/game/interaction/Option.class new file mode 100644 index 000000000..012f28d9a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/Option.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/OptionHandler.class b/CompiledServer/production/Server/org/crandor/game/interaction/OptionHandler.class new file mode 100644 index 000000000..aab5d3ae8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/OptionHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$1.class b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$1.class new file mode 100644 index 000000000..a368a0317 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$2.class b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$2.class new file mode 100644 index 000000000..d55dab29b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$3.class b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$3.class new file mode 100644 index 000000000..285b4d576 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler.class b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler.class new file mode 100644 index 000000000..f44eb9f8b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/interaction/UseWithHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/Node.class b/CompiledServer/production/Server/org/crandor/game/node/Node.class new file mode 100644 index 000000000..c524a8d3e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/Node.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$1.class new file mode 100644 index 000000000..4d04aff20 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$2.class new file mode 100644 index 000000000..31410322e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$3.class new file mode 100644 index 000000000..c7bbff37f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$4.class new file mode 100644 index 000000000..290792f6c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$5.class b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$5.class new file mode 100644 index 000000000..cb03ffc81 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/Entity.class b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity.class new file mode 100644 index 000000000..164fb01c2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/Entity.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/BattleState.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/BattleState.class new file mode 100644 index 000000000..401001335 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/BattleState.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$1.class new file mode 100644 index 000000000..5ad03618f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$2.class new file mode 100644 index 000000000..91277c77d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$3.class new file mode 100644 index 000000000..2cda632d1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse.class new file mode 100644 index 000000000..80468dd33 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatSpell.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatSpell.class new file mode 100644 index 000000000..5a6e813e6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatSpell.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatStyle.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatStyle.class new file mode 100644 index 000000000..df3b3b9aa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatStyle.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatSwingHandler.class new file mode 100644 index 000000000..8ce43e584 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/CombatSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/DeathTask.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/DeathTask.class new file mode 100644 index 000000000..d738da67c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/DeathTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$1.class new file mode 100644 index 000000000..0b34ee6d2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$HitsplatType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$HitsplatType.class new file mode 100644 index 000000000..b4f7e317e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$HitsplatType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$Impact.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$Impact.class new file mode 100644 index 000000000..bd7e48533 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler$Impact.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler.class new file mode 100644 index 000000000..d1c8dfb59 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/ImpactHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/InteractionType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/InteractionType.class new file mode 100644 index 000000000..40472fba2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/InteractionType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Ammunition.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Ammunition.class new file mode 100644 index 000000000..b11365d83 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Ammunition.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$1.class new file mode 100644 index 000000000..8827d52d8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$2.class new file mode 100644 index 000000000..5aa4888b9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$3.class new file mode 100644 index 000000000..894ee42db Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$4.class new file mode 100644 index 000000000..faff40751 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$5.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$5.class new file mode 100644 index 000000000..9762325d4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$6.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$6.class new file mode 100644 index 000000000..0c63c5863 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet.class new file mode 100644 index 000000000..23f8fbc17 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/ArmourSet.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$1.class new file mode 100644 index 000000000..52535ff67 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$10.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$10.class new file mode 100644 index 000000000..18384a452 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$10.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$2.class new file mode 100644 index 000000000..237ae4f26 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$3.class new file mode 100644 index 000000000..9b13c2f12 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$4.class new file mode 100644 index 000000000..fd4c49472 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$5.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$5.class new file mode 100644 index 000000000..ef89d755f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$6.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$6.class new file mode 100644 index 000000000..e653f976b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$7.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$7.class new file mode 100644 index 000000000..2a800602e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$8.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$8.class new file mode 100644 index 000000000..498fbccc5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$8.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$9.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$9.class new file mode 100644 index 000000000..878f18ab8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect$9.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect.class new file mode 100644 index 000000000..694fd4639 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/BoltEffect.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/DefaultCombatSpell.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/DefaultCombatSpell.class new file mode 100644 index 000000000..311006bfe Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/DefaultCombatSpell.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/DegradableEquipment.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/DegradableEquipment.class new file mode 100644 index 000000000..d4cebaa5c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/DegradableEquipment.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$1.class new file mode 100644 index 000000000..9032eb938 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$2.class new file mode 100644 index 000000000..291fa2630 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$3.class new file mode 100644 index 000000000..a5811e411 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$4.class new file mode 100644 index 000000000..5f8a39c5c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType.class new file mode 100644 index 000000000..340374e75 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/FireType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/RangeWeapon.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/RangeWeapon.class new file mode 100644 index 000000000..fdd120e68 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/RangeWeapon.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$1.class new file mode 100644 index 000000000..19d872e88 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$10.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$10.class new file mode 100644 index 000000000..f17e424f6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$10.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$11.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$11.class new file mode 100644 index 000000000..2cf39df00 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$11.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$12.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$12.class new file mode 100644 index 000000000..eba70acd8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$12.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$13.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$13.class new file mode 100644 index 000000000..fa9c403e6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$13.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$2.class new file mode 100644 index 000000000..401cacd6d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$3.class new file mode 100644 index 000000000..a2e018b8b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$4.class new file mode 100644 index 000000000..4fbcb6b3f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$5.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$5.class new file mode 100644 index 000000000..4478d5d96 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$6.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$6.class new file mode 100644 index 000000000..0b2e94742 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$7.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$7.class new file mode 100644 index 000000000..cdbec4cc3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$8.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$8.class new file mode 100644 index 000000000..8f27d6967 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$8.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$9.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$9.class new file mode 100644 index 000000000..44e09d2fb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType$9.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType.class new file mode 100644 index 000000000..77635b59f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SpellType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SwitchAttack.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SwitchAttack.class new file mode 100644 index 000000000..3d4f29d65 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/SwitchAttack.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Weapon$WeaponType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Weapon$WeaponType.class new file mode 100644 index 000000000..9ce845169 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Weapon$WeaponType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Weapon.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Weapon.class new file mode 100644 index 000000000..39036b2f0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/Weapon.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface$AttackStyle.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface$AttackStyle.class new file mode 100644 index 000000000..35026a3df Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface$AttackStyle.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface$WeaponInterfaces.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface$WeaponInterfaces.class new file mode 100644 index 000000000..74389ffc9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface$WeaponInterfaces.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface.class new file mode 100644 index 000000000..ca517a7c6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/equipment/WeaponInterface.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/ChinchompaSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/ChinchompaSwingHandler.class new file mode 100644 index 000000000..e1741e08f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/ChinchompaSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/DragonfireSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/DragonfireSwingHandler.class new file mode 100644 index 000000000..075973e99 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/DragonfireSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MagicSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MagicSwingHandler.class new file mode 100644 index 000000000..0a254187d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MagicSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MeleeSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MeleeSwingHandler.class new file mode 100644 index 000000000..5f628b344 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MeleeSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MultiSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MultiSwingHandler.class new file mode 100644 index 000000000..f337b64fc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/MultiSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/RangeSwingHandler$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/RangeSwingHandler$1.class new file mode 100644 index 000000000..8faa484bf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/RangeSwingHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/RangeSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/RangeSwingHandler.class new file mode 100644 index 000000000..30e4c1b22 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/RangeSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/SalamanderSwingHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/SalamanderSwingHandler.class new file mode 100644 index 000000000..73b7d524d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/SalamanderSwingHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/TridentOfSeasHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/TridentOfSeasHandler.class new file mode 100644 index 000000000..42a4ad58f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/TridentOfSeasHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/TridentOfSwampHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/TridentOfSwampHandler.class new file mode 100644 index 000000000..00f572c50 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/combat/handlers/TridentOfSwampHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Animator$Priority.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Animator$Priority.class new file mode 100644 index 000000000..e084c943b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Animator$Priority.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Animator.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Animator.class new file mode 100644 index 000000000..c6e8ba626 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Animator.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/ForceMovement.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/ForceMovement.class new file mode 100644 index 000000000..67117f0b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/ForceMovement.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/GameAttributes.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/GameAttributes.class new file mode 100644 index 000000000..49f6e2681 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/GameAttributes.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Projectile.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Projectile.class new file mode 100644 index 000000000..732f05af1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Projectile.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Properties.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Properties.class new file mode 100644 index 000000000..28abff271 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/Properties.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/PulseManager$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/PulseManager$1.class new file mode 100644 index 000000000..5af6c2398 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/PulseManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/PulseManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/PulseManager.class new file mode 100644 index 000000000..81a1d2824 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/PulseManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/impl/WalkingQueue.class b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/WalkingQueue.class new file mode 100644 index 000000000..8b5b864f0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/impl/WalkingQueue.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/lock/ActionLocks.class b/CompiledServer/production/Server/org/crandor/game/node/entity/lock/ActionLocks.class new file mode 100644 index 000000000..36fe0f8ac Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/lock/ActionLocks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/lock/Lock.class b/CompiledServer/production/Server/org/crandor/game/node/entity/lock/Lock.class new file mode 100644 index 000000000..f8d6ca999 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/lock/Lock.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/lock/LockElapse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/lock/LockElapse.class new file mode 100644 index 000000000..ed6c7b053 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/lock/LockElapse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/AbstractNPC.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/AbstractNPC.class new file mode 100644 index 000000000..03c1d2ee4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/AbstractNPC.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/IdleAbstractNPC.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/IdleAbstractNPC.class new file mode 100644 index 000000000..973afaf12 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/IdleAbstractNPC.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/Metamorphosis.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/Metamorphosis.class new file mode 100644 index 000000000..cc02898ec Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/Metamorphosis.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/NPC$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/NPC$1.class new file mode 100644 index 000000000..49129940e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/NPC$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/NPC.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/NPC.class new file mode 100644 index 000000000..3d3773786 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/NPC.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveBehavior$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveBehavior$1.class new file mode 100644 index 000000000..b52e5fed3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveBehavior$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveBehavior.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveBehavior.class new file mode 100644 index 000000000..678bffa8a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveBehavior.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveHandler.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveHandler.class new file mode 100644 index 000000000..091122507 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/agg/AggressiveHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/DropFrequency.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/DropFrequency.class new file mode 100644 index 000000000..f9b57a8a1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/DropFrequency.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/NPCDropTables.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/NPCDropTables.class new file mode 100644 index 000000000..386f59a72 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/NPCDropTables.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/RareDropTable.class b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/RareDropTable.class new file mode 100644 index 000000000..21643fad7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/npc/drop/RareDropTable.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/Player.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/Player.class new file mode 100644 index 000000000..17d6177cf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/Player.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPBuilder.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPBuilder.class new file mode 100644 index 000000000..0a8d650eb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPControlDialogue.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPControlDialogue.class new file mode 100644 index 000000000..5788eef38 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPControlDialogue.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer$1.class new file mode 100644 index 000000000..cfafb00a6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer$2.class new file mode 100644 index 000000000..a3afd11f6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer.class new file mode 100644 index 000000000..0846187cd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/AIPlayer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/ArtificialSession.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/ArtificialSession.class new file mode 100644 index 000000000..7a264c086 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/ArtificialSession.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/GeneralBotCreator$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/GeneralBotCreator$1.class new file mode 100644 index 000000000..15e7f580c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/GeneralBotCreator$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/GeneralBotCreator.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/GeneralBotCreator.class new file mode 100644 index 000000000..747fd1245 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/GeneralBotCreator.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/ScriptAPI.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/ScriptAPI.class new file mode 100644 index 000000000..1b57a2296 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/ScriptAPI.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/LobsterCatcher$Sets.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/LobsterCatcher$Sets.class new file mode 100644 index 000000000..1c23fdb2a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/LobsterCatcher$Sets.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/LobsterCatcher.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/LobsterCatcher.class new file mode 100644 index 000000000..a0ac069c0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/LobsterCatcher.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/ManThiever.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/ManThiever.class new file mode 100644 index 000000000..905fb79bf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/ManThiever.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/Script.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/Script.class new file mode 100644 index 000000000..16d716914 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/general/scriptrepository/Script.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/CombatState.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/CombatState.class new file mode 100644 index 000000000..60869b3b3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/CombatState.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot$1.class new file mode 100644 index 000000000..a422b82a9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot$State.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot$State.class new file mode 100644 index 000000000..6beedf220 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot$State.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot.class new file mode 100644 index 000000000..2c7536b5e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/minigamebots/pestcontrol/PestControlTestBot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/DragonKiller.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/DragonKiller.class new file mode 100644 index 000000000..acec40d5a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/DragonKiller.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/GiantMoleBot.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/GiantMoleBot.class new file mode 100644 index 000000000..3c9c2e5a9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/GiantMoleBot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class new file mode 100644 index 000000000..ece037030 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/NoobBot.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/NoobBot.class new file mode 100644 index 000000000..f20d32c4b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/NoobBot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class new file mode 100644 index 000000000..d27a6b64a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/PvMBotsBuilder.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/PvMBotsBuilder.class new file mode 100644 index 000000000..2f97b22d8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvmbots/PvMBotsBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions$1.class new file mode 100644 index 000000000..289538850 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions$2.class new file mode 100644 index 000000000..c6059f5d7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions.class new file mode 100644 index 000000000..3524cffd8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPActions.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPBuilderUtils.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPBuilderUtils.class new file mode 100644 index 000000000..f27959940 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/pvp/PVPAIPBuilderUtils.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPActions$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPActions$1.class new file mode 100644 index 000000000..462dd50b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPActions$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPActions.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPActions.class new file mode 100644 index 000000000..a036985d2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPActions.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPManager$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPManager$1.class new file mode 100644 index 000000000..3a50e1a8d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPManager.class new file mode 100644 index 000000000..fb4d6c092 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/ResourceAIPManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTask.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTask.class new file mode 100644 index 000000000..1342b22bb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTasks$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTasks$1.class new file mode 100644 index 000000000..9dcd5030d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTasks$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTasks.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTasks.class new file mode 100644 index 000000000..493aa6e6e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/resource/task/ResourceTasks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/skillingbot/SkillingBot.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/skillingbot/SkillingBot.class new file mode 100644 index 000000000..ddd3f3000 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/skillingbot/SkillingBot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/skillingbot/SkillingBotsBuilder.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/skillingbot/SkillingBotsBuilder.class new file mode 100644 index 000000000..9b22ecc43 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/skillingbot/SkillingBotsBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/GlobalAIManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/GlobalAIManager.class new file mode 100644 index 000000000..2ab3c251e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/GlobalAIManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/android/CombatDroid.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/android/CombatDroid.class new file mode 100644 index 000000000..4e2cc5e64 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/android/CombatDroid.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/android/GatheringDroid.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/android/GatheringDroid.class new file mode 100644 index 000000000..92eefd1cf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/android/GatheringDroid.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/Predicate$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/Predicate$1.class new file mode 100644 index 000000000..1f9a8b769 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/Predicate$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/Predicate.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/Predicate.class new file mode 100644 index 000000000..d17746985 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/Predicate.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/PredicateType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/PredicateType.class new file mode 100644 index 000000000..6d4c93614 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/PredicateType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/impl/AppearancePredicate.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/impl/AppearancePredicate.class new file mode 100644 index 000000000..f393f0874 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/system/predicate/impl/AppearancePredicate.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/wilderness/PvPBotsBuilder.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/wilderness/PvPBotsBuilder.class new file mode 100644 index 000000000..845c2508c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/wilderness/PvPBotsBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/wilderness/WildernessBot.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/wilderness/WildernessBot.class new file mode 100644 index 000000000..661eb688b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/ai/wilderness/WildernessBot.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/ClientInfo.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/ClientInfo.class new file mode 100644 index 000000000..d0a00aac9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/ClientInfo.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/PlayerDetails.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/PlayerDetails.class new file mode 100644 index 000000000..83cf56620 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/PlayerDetails.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/RenderInfo.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/RenderInfo.class new file mode 100644 index 000000000..5e9b65e69 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/RenderInfo.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/Rights$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/Rights$1.class new file mode 100644 index 000000000..07d365b94 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/Rights$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/Rights.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/Rights.class new file mode 100644 index 000000000..f02cfbcee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/Rights.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/UIDInfo.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/UIDInfo.class new file mode 100644 index 000000000..27d8f55f0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/UIDInfo.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration$1.class new file mode 100644 index 000000000..df1f4ded5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class new file mode 100644 index 000000000..4ec086bdf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class new file mode 100644 index 000000000..a8f6ad051 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginConfiguration.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser$1.class new file mode 100644 index 000000000..c720aad4f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser$2.class new file mode 100644 index 000000000..268afcdd6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser.class new file mode 100644 index 000000000..8c2c8a90c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginParser.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginType.class new file mode 100644 index 000000000..cb56cc33f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/LoginType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/PlayerParser.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/PlayerParser.class new file mode 100644 index 000000000..7e02f4845 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/PlayerParser.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/Response.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/Response.class new file mode 100644 index 000000000..1c43a4b7d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/Response.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/SavingModule.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/SavingModule.class new file mode 100644 index 000000000..0e9c6bac5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/login/SavingModule.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/DonatorType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/DonatorType.class new file mode 100644 index 000000000..cfaa6ae03 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/DonatorType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/Icon.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/Icon.class new file mode 100644 index 000000000..862cfbfc4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/Icon.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/Perks.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/Perks.class new file mode 100644 index 000000000..addeda6e8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/Perks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/PlayerSQLManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/PlayerSQLManager.class new file mode 100644 index 000000000..542f7c3f6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/PlayerSQLManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/PortalShop.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/PortalShop.class new file mode 100644 index 000000000..a6d4a0353 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/info/portal/PortalShop.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ActivityData.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ActivityData.class new file mode 100644 index 000000000..351f37801 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ActivityData.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$1.class new file mode 100644 index 000000000..0f2a8fc40 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$2.class new file mode 100644 index 000000000..b9a101fdf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$1.class new file mode 100644 index 000000000..e629ceb4e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$2.class new file mode 100644 index 000000000..2e6ac776d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$3.class new file mode 100644 index 000000000..efb5f80ce Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus.class new file mode 100644 index 000000000..1127c653c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager$PinStatus.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager.class new file mode 100644 index 000000000..3e6ef1c46 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BankPinManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BarcrawlManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BarcrawlManager.class new file mode 100644 index 000000000..63a999a85 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/BarcrawlManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager$1.class new file mode 100644 index 000000000..7495c3979 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager$Configuration.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager$Configuration.class new file mode 100644 index 000000000..c96a642bb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager$Configuration.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager.class new file mode 100644 index 000000000..ccb7faae4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/ConfigurationManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/GlobalData.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/GlobalData.class new file mode 100644 index 000000000..924ae106d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/GlobalData.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/HintIconManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/HintIconManager.class new file mode 100644 index 000000000..5a3d716fa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/HintIconManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/InterfaceManager$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/InterfaceManager$1.class new file mode 100644 index 000000000..ced1efebc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/InterfaceManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/InterfaceManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/InterfaceManager.class new file mode 100644 index 000000000..793ef3c4e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/InterfaceManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/IronmanManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/IronmanManager.class new file mode 100644 index 000000000..5b3b08607 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/IronmanManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/IronmanMode.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/IronmanMode.class new file mode 100644 index 000000000..988a9b4d9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/IronmanMode.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/PacketDispatch$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/PacketDispatch$1.class new file mode 100644 index 000000000..22359da22 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/PacketDispatch$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/PacketDispatch.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/PacketDispatch.class new file mode 100644 index 000000000..06c55e418 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/PacketDispatch.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/QuestData.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/QuestData.class new file mode 100644 index 000000000..ff4927373 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/QuestData.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/RunScript.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/RunScript.class new file mode 100644 index 000000000..3b46c24a8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/RunScript.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SavedData.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SavedData.class new file mode 100644 index 000000000..38c762a7d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SavedData.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/Settings$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/Settings$1.class new file mode 100644 index 000000000..5792cab0c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/Settings$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/Settings.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/Settings.class new file mode 100644 index 000000000..c64b0e388 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/Settings.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SkullManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SkullManager.class new file mode 100644 index 000000000..f8a1e4f38 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SkullManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SpellBookManager$SpellBook.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SpellBookManager$SpellBook.class new file mode 100644 index 000000000..731f08dc8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SpellBookManager$SpellBook.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SpellBookManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SpellBookManager.class new file mode 100644 index 000000000..4980ccd2a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/SpellBookManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$1.class new file mode 100644 index 000000000..35897d641 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportSettings.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportSettings.class new file mode 100644 index 000000000..da06a1453 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportSettings.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$1$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$1$1.class new file mode 100644 index 000000000..996f43b50 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$1$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$1.class new file mode 100644 index 000000000..a0d9ab4f6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$10$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$10$1.class new file mode 100644 index 000000000..06ea71460 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$10$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$10.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$10.class new file mode 100644 index 000000000..fce51b1c3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$10.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$11$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$11$1.class new file mode 100644 index 000000000..04303c047 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$11$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$11.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$11.class new file mode 100644 index 000000000..d7c9b3eed Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$11.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$12$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$12$1.class new file mode 100644 index 000000000..09e9f2071 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$12$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$12.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$12.class new file mode 100644 index 000000000..ec2511236 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$12.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$13$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$13$1.class new file mode 100644 index 000000000..f472e2dd9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$13$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$13.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$13.class new file mode 100644 index 000000000..4f3e2582a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$13.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$2$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$2$1.class new file mode 100644 index 000000000..9bf0201c1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$2$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$2.class new file mode 100644 index 000000000..c48f3463a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$3$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$3$1.class new file mode 100644 index 000000000..3cfcdff3c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$3$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$3.class new file mode 100644 index 000000000..8fa32be2e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$4$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$4$1.class new file mode 100644 index 000000000..ad22b82f1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$4$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$4.class new file mode 100644 index 000000000..a6a080d89 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$5$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$5$1.class new file mode 100644 index 000000000..6ecfd8766 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$5$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$5.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$5.class new file mode 100644 index 000000000..c81f60fab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$6$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$6$1.class new file mode 100644 index 000000000..d24601d32 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$6$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$6.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$6.class new file mode 100644 index 000000000..c1ff98037 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$7$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$7$1.class new file mode 100644 index 000000000..e956e6fc9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$7$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$7.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$7.class new file mode 100644 index 000000000..e74b92c00 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$8$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$8$1.class new file mode 100644 index 000000000..7436f1de0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$8$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$8.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$8.class new file mode 100644 index 000000000..7e1436e82 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$8.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$9$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$9$1.class new file mode 100644 index 000000000..5916758a4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$9$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$9.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$9.class new file mode 100644 index 000000000..93ffb22cc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType$9.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType.class new file mode 100644 index 000000000..e26c4f28c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager$TeleportType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager.class new file mode 100644 index 000000000..92fd8b67d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/TeleportManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/WarningMessages$WarningMessage.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/WarningMessages$WarningMessage.class new file mode 100644 index 000000000..1b91111fb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/WarningMessages$WarningMessage.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/WarningMessages.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/WarningMessages.class new file mode 100644 index 000000000..43b93c542 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/WarningMessages.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Appearance$AppearanceCache.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Appearance$AppearanceCache.class new file mode 100644 index 000000000..8b793fd8f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Appearance$AppearanceCache.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Appearance.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Appearance.class new file mode 100644 index 000000000..8e6c8220a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Appearance.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/BodyPart.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/BodyPart.class new file mode 100644 index 000000000..0b7d93659 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/BodyPart.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Gender.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Gender.class new file mode 100644 index 000000000..6f1364a71 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/appearance/Gender.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/audio/Audio.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/audio/Audio.class new file mode 100644 index 000000000..b12a25948 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/audio/Audio.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/audio/AudioManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/audio/AudioManager.class new file mode 100644 index 000000000..03a8b874b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/audio/AudioManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/AchievementDiary.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/AchievementDiary.class new file mode 100644 index 000000000..f074b316f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/AchievementDiary.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/AchievementDiaryManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/AchievementDiaryManager.class new file mode 100644 index 000000000..fad6f03bb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/AchievementDiaryManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/DiaryType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/DiaryType.class new file mode 100644 index 000000000..344d97cfa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/diary/DiaryType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/EmoteManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/EmoteManager.class new file mode 100644 index 000000000..6f5369c9f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/EmoteManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$1.class new file mode 100644 index 000000000..fe0aa04cb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$2.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$2.class new file mode 100644 index 000000000..6b626bc68 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$3.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$3.class new file mode 100644 index 000000000..01fc73e64 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$4.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$4.class new file mode 100644 index 000000000..e3d8cd655 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$5.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$5.class new file mode 100644 index 000000000..de1c3d6ef Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$6.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$6.class new file mode 100644 index 000000000..e92d615b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$6.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$7$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$7$1.class new file mode 100644 index 000000000..81007ae06 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$7$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$7.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$7.class new file mode 100644 index 000000000..2c962ae80 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes$7.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes.class new file mode 100644 index 000000000..47748ef39 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/emote/Emotes.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/grave/GraveManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/grave/GraveManager.class new file mode 100644 index 000000000..57e4f04bb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/grave/GraveManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/grave/GraveType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/grave/GraveType.class new file mode 100644 index 000000000..de6903014 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/grave/GraveType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicEntry.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicEntry.class new file mode 100644 index 000000000..219d01fe3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicPlayer.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicPlayer.class new file mode 100644 index 000000000..b31c779a3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicPlayer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicZone.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicZone.class new file mode 100644 index 000000000..b6cc33368 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/music/MusicZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/DrainTask.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/DrainTask.class new file mode 100644 index 000000000..76c5670af Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/DrainTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/Prayer.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/Prayer.class new file mode 100644 index 000000000..7c63f32c5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/Prayer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/PrayerCategory.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/PrayerCategory.class new file mode 100644 index 000000000..5bf5b1ed0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/PrayerCategory.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/PrayerType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/PrayerType.class new file mode 100644 index 000000000..5267e52ab Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/prayer/PrayerType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/quest/Quest.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/quest/Quest.class new file mode 100644 index 000000000..a4b4fcaa6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/quest/Quest.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/quest/QuestRepository.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/quest/QuestRepository.class new file mode 100644 index 000000000..025f90b16 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/quest/QuestRepository.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestManager.class new file mode 100644 index 000000000..f7534e5f5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestModule.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestModule.class new file mode 100644 index 000000000..3acb730ec Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestModule.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestType.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestType.class new file mode 100644 index 000000000..b64f3c20f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/RequestType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/assist/AssistSession$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/assist/AssistSession$1.class new file mode 100644 index 000000000..2e7d5a8e5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/assist/AssistSession$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/assist/AssistSession.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/assist/AssistSession.class new file mode 100644 index 000000000..3a9b0a803 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/assist/AssistSession.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeCloseEvent.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeCloseEvent.class new file mode 100644 index 000000000..81911942b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeCloseEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer$1.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer$1.class new file mode 100644 index 000000000..396c157e9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer$TradeListener.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer$TradeListener.class new file mode 100644 index 000000000..d6e54025a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer$TradeListener.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer.class new file mode 100644 index 000000000..046dd3c12 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeContainer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeModule.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeModule.class new file mode 100644 index 000000000..e805e2efd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/request/trade/TradeModule.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/Difficulty.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/Difficulty.class new file mode 100644 index 000000000..5cfbd8aa5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/Difficulty.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/SkillTasks.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/SkillTasks.class new file mode 100644 index 000000000..b26470059 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/SkillTasks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/SkillerTasks.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/SkillerTasks.class new file mode 100644 index 000000000..05e656c63 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/skillertasks/SkillerTasks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKPackage.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKPackage.class new file mode 100644 index 000000000..f62d605c0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKPackage.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKScoreBoard.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKScoreBoard.class new file mode 100644 index 000000000..9d7c8027d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKScoreBoard.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKTitle.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKTitle.class new file mode 100644 index 000000000..569e8d9c9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/PKTitle.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/SpawnData.class b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/SpawnData.class new file mode 100644 index 000000000..5786abaff Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/player/link/spawn/SpawnData.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/EntityState.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/EntityState.class new file mode 100644 index 000000000..1605c6202 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/EntityState.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/StateManager.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/StateManager.class new file mode 100644 index 000000000..92fd41e66 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/StateManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/StatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/StatePulse.class new file mode 100644 index 000000000..116c6f55c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/StatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/AvaDevicePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/AvaDevicePulse.class new file mode 100644 index 000000000..234ca622d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/AvaDevicePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/ChargedStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/ChargedStatePulse.class new file mode 100644 index 000000000..fe12533c0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/ChargedStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/DiseaseStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/DiseaseStatePulse.class new file mode 100644 index 000000000..14e6656c0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/DiseaseStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/DoubleExperiencePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/DoubleExperiencePulse.class new file mode 100644 index 000000000..ea8c47302 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/DoubleExperiencePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/FireResistantPulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/FireResistantPulse.class new file mode 100644 index 000000000..784966a14 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/FireResistantPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/FrozenStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/FrozenStatePulse.class new file mode 100644 index 000000000..56f0a1797 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/FrozenStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/IncubatorStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/IncubatorStatePulse.class new file mode 100644 index 000000000..94d7dc62f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/IncubatorStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/MiasmicStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/MiasmicStatePulse.class new file mode 100644 index 000000000..3cf709a26 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/MiasmicStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/PoisonStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/PoisonStatePulse.class new file mode 100644 index 000000000..da6af65a6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/PoisonStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/SkullStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/SkullStatePulse.class new file mode 100644 index 000000000..f8653a438 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/SkullStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/StaffOfTheDeadPulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/StaffOfTheDeadPulse.class new file mode 100644 index 000000000..9ffc79de8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/StaffOfTheDeadPulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/StunStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/StunStatePulse.class new file mode 100644 index 000000000..7de685da7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/StunStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/TeleblockStatePulse.class b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/TeleblockStatePulse.class new file mode 100644 index 000000000..2b43f1ddf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/entity/state/impl/TeleblockStatePulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/item/ChanceItem.class b/CompiledServer/production/Server/org/crandor/game/node/item/ChanceItem.class new file mode 100644 index 000000000..dbd10ce57 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/item/ChanceItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/item/GroundItem.class b/CompiledServer/production/Server/org/crandor/game/node/item/GroundItem.class new file mode 100644 index 000000000..130190bcd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/item/GroundItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/item/GroundItemManager.class b/CompiledServer/production/Server/org/crandor/game/node/item/GroundItemManager.class new file mode 100644 index 000000000..b83200acd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/item/GroundItemManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/item/Item.class b/CompiledServer/production/Server/org/crandor/game/node/item/Item.class new file mode 100644 index 000000000..5c45db0a0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/item/Item.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/item/ItemPlugin.class b/CompiledServer/production/Server/org/crandor/game/node/item/ItemPlugin.class new file mode 100644 index 000000000..ea710f987 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/item/ItemPlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/Constructed.class b/CompiledServer/production/Server/org/crandor/game/node/object/Constructed.class new file mode 100644 index 000000000..f21257a34 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/Constructed.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/GameObject.class b/CompiledServer/production/Server/org/crandor/game/node/object/GameObject.class new file mode 100644 index 000000000..7481b1380 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/GameObject.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$1.class b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$1.class new file mode 100644 index 000000000..e8b9d535c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$2.class b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$2.class new file mode 100644 index 000000000..eb7173d94 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$3.class b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$3.class new file mode 100644 index 000000000..64692edd7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$4.class b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$4.class new file mode 100644 index 000000000..79d0078b1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder.class b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder.class new file mode 100644 index 000000000..4eeafa4b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/node/object/ObjectBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemConfig.class b/CompiledServer/production/Server/org/crandor/game/system/SystemConfig.class new file mode 100644 index 000000000..879716332 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemConfig.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemLogger.class b/CompiledServer/production/Server/org/crandor/game/system/SystemLogger.class new file mode 100644 index 000000000..e34c3215f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemLogger.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemManager$1.class b/CompiledServer/production/Server/org/crandor/game/system/SystemManager$1.class new file mode 100644 index 000000000..defb430b6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemManager$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemManager.class b/CompiledServer/production/Server/org/crandor/game/system/SystemManager.class new file mode 100644 index 000000000..f6407a950 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemShutdownHook.class b/CompiledServer/production/Server/org/crandor/game/system/SystemShutdownHook.class new file mode 100644 index 000000000..acb0406c7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemShutdownHook.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemState.class b/CompiledServer/production/Server/org/crandor/game/system/SystemState.class new file mode 100644 index 000000000..2ba5d601a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemState.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemTermination.class b/CompiledServer/production/Server/org/crandor/game/system/SystemTermination.class new file mode 100644 index 000000000..8b5277a13 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemTermination.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemUpdate$1.class b/CompiledServer/production/Server/org/crandor/game/system/SystemUpdate$1.class new file mode 100644 index 000000000..7bb7e2c2c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemUpdate$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/SystemUpdate.class b/CompiledServer/production/Server/org/crandor/game/system/SystemUpdate.class new file mode 100644 index 000000000..5a17c5fed Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/SystemUpdate.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandPlugin.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandPlugin.class new file mode 100644 index 000000000..294785566 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandPlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$1.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$1.class new file mode 100644 index 000000000..849c2314a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$2.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$2.class new file mode 100644 index 000000000..cf5c960f6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$3.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$3.class new file mode 100644 index 000000000..56a7709af Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$4.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$4.class new file mode 100644 index 000000000..b65936559 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet.class new file mode 100644 index 000000000..78522c02f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSet.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/command/CommandSystem.class b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSystem.class new file mode 100644 index 000000000..794ac8e86 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/command/CommandSystem.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/ClanEntry.class b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanEntry.class new file mode 100644 index 000000000..c50d5914a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/ClanMember.class b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanMember.class new file mode 100644 index 000000000..507f5dbf4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanMember.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/ClanRank.class b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanRank.class new file mode 100644 index 000000000..c73b1d3eb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanRank.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/ClanRepository.class b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanRepository.class new file mode 100644 index 000000000..aa3582778 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/ClanRepository.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/CommunicationInfo$1.class b/CompiledServer/production/Server/org/crandor/game/system/communication/CommunicationInfo$1.class new file mode 100644 index 000000000..47306408c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/CommunicationInfo$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/CommunicationInfo.class b/CompiledServer/production/Server/org/crandor/game/system/communication/CommunicationInfo.class new file mode 100644 index 000000000..7dfbbd501 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/CommunicationInfo.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/communication/Contact.class b/CompiledServer/production/Server/org/crandor/game/system/communication/Contact.class new file mode 100644 index 000000000..804649ba0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/communication/Contact.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/monitor/DuplicationLog.class b/CompiledServer/production/Server/org/crandor/game/system/monitor/DuplicationLog.class new file mode 100644 index 000000000..830c8b35f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/monitor/DuplicationLog.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/monitor/ExceptionLog.class b/CompiledServer/production/Server/org/crandor/game/system/monitor/ExceptionLog.class new file mode 100644 index 000000000..d5c865328 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/monitor/ExceptionLog.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/monitor/MessageLog.class b/CompiledServer/production/Server/org/crandor/game/system/monitor/MessageLog.class new file mode 100644 index 000000000..cc6c4f47a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/monitor/MessageLog.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/monitor/PlayerMonitor.class b/CompiledServer/production/Server/org/crandor/game/system/monitor/PlayerMonitor.class new file mode 100644 index 000000000..ee539a7a2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/monitor/PlayerMonitor.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLColumn.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLColumn.class new file mode 100644 index 000000000..11a0ec22f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLColumn.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLEntryHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLEntryHandler.class new file mode 100644 index 000000000..a43344f25 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLEntryHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLManager.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLManager.class new file mode 100644 index 000000000..fa82f3dd5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLTable.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLTable.class new file mode 100644 index 000000000..9898cf880 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/SQLTable.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ComponentSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ComponentSQLHandler.class new file mode 100644 index 000000000..a05bfeaa3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ComponentSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/DoorConfigSQLHandler$Door.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/DoorConfigSQLHandler$Door.class new file mode 100644 index 000000000..c748f7401 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/DoorConfigSQLHandler$Door.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/DoorConfigSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/DoorConfigSQLHandler.class new file mode 100644 index 000000000..0e6dd0276 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/DoorConfigSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler$GroundSpawn$1.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler$GroundSpawn$1.class new file mode 100644 index 000000000..aa2a09d75 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler$GroundSpawn$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler$GroundSpawn.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler$GroundSpawn.class new file mode 100644 index 000000000..610797821 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler$GroundSpawn.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler.class new file mode 100644 index 000000000..718d02183 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/GroundSpawnSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/HighscoreSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/HighscoreSQLHandler.class new file mode 100644 index 000000000..4a821400c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/HighscoreSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ItemConfigSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ItemConfigSQLHandler.class new file mode 100644 index 000000000..e56d82ab9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ItemConfigSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/MusicConfigSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/MusicConfigSQLHandler.class new file mode 100644 index 000000000..81c152301 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/MusicConfigSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCConfigSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCConfigSQLHandler.class new file mode 100644 index 000000000..1524158b9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCConfigSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCDropSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCDropSQLHandler.class new file mode 100644 index 000000000..a5a94dc55 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCDropSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCSpawnSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCSpawnSQLHandler.class new file mode 100644 index 000000000..dbab10204 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/NPCSpawnSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/PlayerLogSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/PlayerLogSQLHandler.class new file mode 100644 index 000000000..b642f95a0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/PlayerLogSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/PlayerSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/PlayerSQLHandler.class new file mode 100644 index 000000000..ca4bb12f8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/PlayerSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/RangeConfigSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/RangeConfigSQLHandler.class new file mode 100644 index 000000000..96d357685 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/RangeConfigSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/RegionSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/RegionSQLHandler.class new file mode 100644 index 000000000..c6a9e8345 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/RegionSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ShopSQLHandler$1.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ShopSQLHandler$1.class new file mode 100644 index 000000000..a6c4012cb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ShopSQLHandler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ShopSQLHandler.class b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ShopSQLHandler.class new file mode 100644 index 000000000..466d4e700 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/mysql/impl/ShopSQLHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/InstructionType.class b/CompiledServer/production/Server/org/crandor/game/system/script/InstructionType.class new file mode 100644 index 000000000..287c517ea Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/InstructionType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/MethodCall.class b/CompiledServer/production/Server/org/crandor/game/system/script/MethodCall.class new file mode 100644 index 000000000..57554eb55 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/MethodCall.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ParamCall.class b/CompiledServer/production/Server/org/crandor/game/system/script/ParamCall.class new file mode 100644 index 000000000..73d4f1a6b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ParamCall.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptBuilder.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptBuilder.class new file mode 100644 index 000000000..7741bc56e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptCompiler$1.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptCompiler$1.class new file mode 100644 index 000000000..9b45c6d87 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptCompiler$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptCompiler.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptCompiler.class new file mode 100644 index 000000000..713ccf8ca Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptCompiler.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptContext.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptContext.class new file mode 100644 index 000000000..2bec304e4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptEntry.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptEntry.class new file mode 100644 index 000000000..406ad489b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptManager.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptManager.class new file mode 100644 index 000000000..12b9564f7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/ScriptType.class b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptType.class new file mode 100644 index 000000000..7e1988647 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/ScriptType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/build/DialogueScriptBuilder.class b/CompiledServer/production/Server/org/crandor/game/system/script/build/DialogueScriptBuilder.class new file mode 100644 index 000000000..daa81c09e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/build/DialogueScriptBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/AddItemInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/AddItemInstruction.class new file mode 100644 index 000000000..31f592091 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/AddItemInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/CheckRandomCondition.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/CheckRandomCondition.class new file mode 100644 index 000000000..c2e7ce4ec Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/CheckRandomCondition.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/InvItemCondition.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/InvItemCondition.class new file mode 100644 index 000000000..15e7dbe18 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/InvItemCondition.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/ItemMessageInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/ItemMessageInstruction.class new file mode 100644 index 000000000..cbfe67ac0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/ItemMessageInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/NPCDialInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/NPCDialInstruction.class new file mode 100644 index 000000000..191582e1f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/NPCDialInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/OptionDialInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/OptionDialInstruction.class new file mode 100644 index 000000000..ad986ee23 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/OptionDialInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/PDialInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/PDialInstruction.class new file mode 100644 index 000000000..c22e98390 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/PDialInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/PMessageInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/PMessageInstruction.class new file mode 100644 index 000000000..f202ffe7d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/PMessageInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/PauseInstruction$1.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/PauseInstruction$1.class new file mode 100644 index 000000000..28b38795b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/PauseInstruction$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/PauseInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/PauseInstruction.class new file mode 100644 index 000000000..96b6a0e58 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/PauseInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/PlainMessageInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/PlainMessageInstruction.class new file mode 100644 index 000000000..6f0588bcf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/PlainMessageInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/RemoveItemInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/RemoveItemInstruction.class new file mode 100644 index 000000000..4575432d9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/RemoveItemInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/SetAttributeInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/SetAttributeInstruction.class new file mode 100644 index 000000000..2a97cfb97 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/SetAttributeInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/SetRandomInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/SetRandomInstruction.class new file mode 100644 index 000000000..d356ca715 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/SetRandomInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/ShopInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/ShopInstruction.class new file mode 100644 index 000000000..c15052ee2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/ShopInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/StartActivityInstruction.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/StartActivityInstruction.class new file mode 100644 index 000000000..17400be08 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/StartActivityInstruction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/context/WGuildTokenCondition.class b/CompiledServer/production/Server/org/crandor/game/system/script/context/WGuildTokenCondition.class new file mode 100644 index 000000000..b462d6694 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/context/WGuildTokenCondition.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidGOTOException.class b/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidGOTOException.class new file mode 100644 index 000000000..819998175 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidGOTOException.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidInstructionException.class b/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidInstructionException.class new file mode 100644 index 000000000..401883a55 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidInstructionException.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidInterpreterException.class b/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidInterpreterException.class new file mode 100644 index 000000000..195532614 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/exc/InvalidInterpreterException.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/exc/ScriptException.class b/CompiledServer/production/Server/org/crandor/game/system/script/exc/ScriptException.class new file mode 100644 index 000000000..e9a70dc3f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/exc/ScriptException.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/script/exc/UnknownScriptException.class b/CompiledServer/production/Server/org/crandor/game/system/script/exc/UnknownScriptException.class new file mode 100644 index 000000000..c51c0a8aa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/script/exc/UnknownScriptException.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/security/EncryptionManager$BCrypt.class b/CompiledServer/production/Server/org/crandor/game/system/security/EncryptionManager$BCrypt.class new file mode 100644 index 000000000..229eef224 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/security/EncryptionManager$BCrypt.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/security/EncryptionManager.class b/CompiledServer/production/Server/org/crandor/game/system/security/EncryptionManager.class new file mode 100644 index 000000000..d60c8a7bd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/security/EncryptionManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/ItemLogoutTask.class b/CompiledServer/production/Server/org/crandor/game/system/task/ItemLogoutTask.class new file mode 100644 index 000000000..8222800ee Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/ItemLogoutTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/LocationLogoutTask.class b/CompiledServer/production/Server/org/crandor/game/system/task/LocationLogoutTask.class new file mode 100644 index 000000000..cb5d1da2b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/LocationLogoutTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/LogoutTask.class b/CompiledServer/production/Server/org/crandor/game/system/task/LogoutTask.class new file mode 100644 index 000000000..3bea60c13 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/LogoutTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/MovementHook.class b/CompiledServer/production/Server/org/crandor/game/system/task/MovementHook.class new file mode 100644 index 000000000..9832f7593 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/MovementHook.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/NodeTask$1.class b/CompiledServer/production/Server/org/crandor/game/system/task/NodeTask$1.class new file mode 100644 index 000000000..09637fe3d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/NodeTask$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/NodeTask.class b/CompiledServer/production/Server/org/crandor/game/system/task/NodeTask.class new file mode 100644 index 000000000..f78560e0f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/NodeTask.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/Pulse.class b/CompiledServer/production/Server/org/crandor/game/system/task/Pulse.class new file mode 100644 index 000000000..509ebc206 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/Pulse.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/system/task/TaskExecutor.class b/CompiledServer/production/Server/org/crandor/game/system/task/TaskExecutor.class new file mode 100644 index 000000000..5e0f9d92a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/system/task/TaskExecutor.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/GameSettings.class b/CompiledServer/production/Server/org/crandor/game/world/GameSettings.class new file mode 100644 index 000000000..a4baed404 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/GameSettings.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/GameType.class b/CompiledServer/production/Server/org/crandor/game/world/GameType.class new file mode 100644 index 000000000..add82d732 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/GameType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/GameWorld.class b/CompiledServer/production/Server/org/crandor/game/world/GameWorld.class new file mode 100644 index 000000000..f5dffe30d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/GameWorld.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/callback/CallBack.class b/CompiledServer/production/Server/org/crandor/game/world/callback/CallBack.class new file mode 100644 index 000000000..8560de37d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/callback/CallBack.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/callback/CallbackHub.class b/CompiledServer/production/Server/org/crandor/game/world/callback/CallbackHub.class new file mode 100644 index 000000000..ed4a903bc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/callback/CallbackHub.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/BuildRegionChunk.class b/CompiledServer/production/Server/org/crandor/game/world/map/BuildRegionChunk.class new file mode 100644 index 000000000..3bb8a1a78 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/BuildRegionChunk.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/Direction.class b/CompiledServer/production/Server/org/crandor/game/world/map/Direction.class new file mode 100644 index 000000000..6bd5e85d7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/Direction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/Location.class b/CompiledServer/production/Server/org/crandor/game/world/map/Location.class new file mode 100644 index 000000000..4517cf970 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/Location.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/MapDistance.class b/CompiledServer/production/Server/org/crandor/game/world/map/MapDistance.class new file mode 100644 index 000000000..f2337445c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/MapDistance.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/Point.class b/CompiledServer/production/Server/org/crandor/game/world/map/Point.class new file mode 100644 index 000000000..ab89dc8c7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/Point.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/Region$1.class b/CompiledServer/production/Server/org/crandor/game/world/map/Region$1.class new file mode 100644 index 000000000..6baab6a80 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/Region$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/Region.class b/CompiledServer/production/Server/org/crandor/game/world/map/Region.class new file mode 100644 index 000000000..20f313a52 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/Region.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/RegionChunk.class b/CompiledServer/production/Server/org/crandor/game/world/map/RegionChunk.class new file mode 100644 index 000000000..733b90dea Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/RegionChunk.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/RegionManager.class b/CompiledServer/production/Server/org/crandor/game/world/map/RegionManager.class new file mode 100644 index 000000000..c0075be5f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/RegionManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/RegionPlane.class b/CompiledServer/production/Server/org/crandor/game/world/map/RegionPlane.class new file mode 100644 index 000000000..ec506ecb4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/RegionPlane.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/Viewport.class b/CompiledServer/production/Server/org/crandor/game/world/map/Viewport.class new file mode 100644 index 000000000..bd79b1844 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/Viewport.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/build/DynamicRegion.class b/CompiledServer/production/Server/org/crandor/game/world/map/build/DynamicRegion.class new file mode 100644 index 000000000..51110655c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/build/DynamicRegion.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/build/LandscapeParser.class b/CompiledServer/production/Server/org/crandor/game/world/map/build/LandscapeParser.class new file mode 100644 index 000000000..a01b41c6c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/build/LandscapeParser.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/build/MapscapeParser.class b/CompiledServer/production/Server/org/crandor/game/world/map/build/MapscapeParser.class new file mode 100644 index 000000000..21778bd2e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/build/MapscapeParser.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/build/RegionFlags.class b/CompiledServer/production/Server/org/crandor/game/world/map/build/RegionFlags.class new file mode 100644 index 000000000..463f57a41 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/build/RegionFlags.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/ClipMaskSupplier.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/ClipMaskSupplier.class new file mode 100644 index 000000000..83c58f53d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/ClipMaskSupplier.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/DumbPathfinder$1.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/DumbPathfinder$1.class new file mode 100644 index 000000000..ff7c31112 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/DumbPathfinder$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/DumbPathfinder.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/DumbPathfinder.class new file mode 100644 index 000000000..b15eaf2ca Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/DumbPathfinder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/Path.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/Path.class new file mode 100644 index 000000000..cb38e8ce1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/Path.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/Pathfinder.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/Pathfinder.class new file mode 100644 index 000000000..4ba15121a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/Pathfinder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/ProjectilePathfinder$1.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/ProjectilePathfinder$1.class new file mode 100644 index 000000000..f259c7e04 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/ProjectilePathfinder$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/ProjectilePathfinder.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/ProjectilePathfinder.class new file mode 100644 index 000000000..f9f11f841 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/ProjectilePathfinder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/path/SmartPathfinder.class b/CompiledServer/production/Server/org/crandor/game/world/map/path/SmartPathfinder.class new file mode 100644 index 000000000..e0af6eb5d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/path/SmartPathfinder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/MapZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/MapZone.class new file mode 100644 index 000000000..1e03bf9dd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/MapZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/RegionZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/RegionZone.class new file mode 100644 index 000000000..851ff4150 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/RegionZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/Zone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/Zone.class new file mode 100644 index 000000000..706016296 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/Zone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneBorders.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneBorders.class new file mode 100644 index 000000000..4011691dd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneBorders.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneBuilder.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneBuilder.class new file mode 100644 index 000000000..f0c6fefe6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneBuilder.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneMonitor.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneMonitor.class new file mode 100644 index 000000000..0e8e5b542 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneMonitor.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneRestriction.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneRestriction.class new file mode 100644 index 000000000..76434a965 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneRestriction.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneType.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneType.class new file mode 100644 index 000000000..154d79a24 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/ZoneType.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/BankZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/BankZone.class new file mode 100644 index 000000000..fa6985c2c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/BankZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone$1$1.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone$1$1.class new file mode 100644 index 000000000..1536f858f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone$1$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone$1.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone$1.class new file mode 100644 index 000000000..ec70315c4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone.class new file mode 100644 index 000000000..50cb8db1c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DarkZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DonatorZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DonatorZone.class new file mode 100644 index 000000000..b3ddb7f8d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/DonatorZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/KaramjaZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/KaramjaZone.class new file mode 100644 index 000000000..e76bb31ae Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/KaramjaZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/ModeratorZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/ModeratorZone.class new file mode 100644 index 000000000..7beefc4e1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/ModeratorZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/MultiwayCombatZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/MultiwayCombatZone.class new file mode 100644 index 000000000..f81de96db Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/MultiwayCombatZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/WildernessZone.class b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/WildernessZone.class new file mode 100644 index 000000000..ea7cc0d5e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/map/zone/impl/WildernessZone.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue$1.class b/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue$1.class new file mode 100644 index 000000000..f79a74018 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue$DisconnectionEntry.class b/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue$DisconnectionEntry.class new file mode 100644 index 000000000..995a39e59 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue$DisconnectionEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue.class b/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue.class new file mode 100644 index 000000000..0533e50b0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/DisconnectionQueue.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/InitializationEntry.class b/CompiledServer/production/Server/org/crandor/game/world/repository/InitializationEntry.class new file mode 100644 index 000000000..290b15822 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/InitializationEntry.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/InitializingNodeList.class b/CompiledServer/production/Server/org/crandor/game/world/repository/InitializingNodeList.class new file mode 100644 index 000000000..215f1fa4e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/InitializingNodeList.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/NodeList.class b/CompiledServer/production/Server/org/crandor/game/world/repository/NodeList.class new file mode 100644 index 000000000..e8117bbe7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/NodeList.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/NodeListIterator.class b/CompiledServer/production/Server/org/crandor/game/world/repository/NodeListIterator.class new file mode 100644 index 000000000..2616286cf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/NodeListIterator.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/repository/Repository.class b/CompiledServer/production/Server/org/crandor/game/world/repository/Repository.class new file mode 100644 index 000000000..20f8fa9eb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/repository/Repository.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/MapChunkRenderer.class b/CompiledServer/production/Server/org/crandor/game/world/update/MapChunkRenderer.class new file mode 100644 index 000000000..5c4ce304c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/MapChunkRenderer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/NPCRenderer.class b/CompiledServer/production/Server/org/crandor/game/world/update/NPCRenderer.class new file mode 100644 index 000000000..8be57a343 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/NPCRenderer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/PlayerRenderer.class b/CompiledServer/production/Server/org/crandor/game/world/update/PlayerRenderer.class new file mode 100644 index 000000000..bdd9f416f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/PlayerRenderer.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/UpdateMasks.class b/CompiledServer/production/Server/org/crandor/game/world/update/UpdateMasks.class new file mode 100644 index 000000000..9d9b6825f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/UpdateMasks.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/UpdateSequence$1.class b/CompiledServer/production/Server/org/crandor/game/world/update/UpdateSequence$1.class new file mode 100644 index 000000000..aafc042e3 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/UpdateSequence$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/UpdateSequence.class b/CompiledServer/production/Server/org/crandor/game/world/update/UpdateSequence.class new file mode 100644 index 000000000..b5b680f0b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/UpdateSequence.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/FlagContext.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/FlagContext.class new file mode 100644 index 000000000..3068a6e66 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/FlagContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/PlayerFlags.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/PlayerFlags.class new file mode 100644 index 000000000..9c8a2f794 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/PlayerFlags.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/UpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/UpdateFlag.class new file mode 100644 index 000000000..72e29eefa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/UpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/AnimateObjectUpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/AnimateObjectUpdateFlag.class new file mode 100644 index 000000000..b79fb3d0c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/AnimateObjectUpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/GraphicUpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/GraphicUpdateFlag.class new file mode 100644 index 000000000..793d2d2d9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/GraphicUpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ItemUpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ItemUpdateFlag.class new file mode 100644 index 000000000..e7ce2244d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ItemUpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ObjectUpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ObjectUpdateFlag.class new file mode 100644 index 000000000..16ecefde9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ObjectUpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ProjectileUpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ProjectileUpdateFlag.class new file mode 100644 index 000000000..e165dc910 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/chunk/ProjectileUpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/Animation.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/Animation.class new file mode 100644 index 000000000..d78063958 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/Animation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/ChatMessage.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/ChatMessage.class new file mode 100644 index 000000000..03c8eb921 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/ChatMessage.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/Graphics.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/Graphics.class new file mode 100644 index 000000000..aa690e515 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/Graphics.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/HitMark.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/HitMark.class new file mode 100644 index 000000000..e49958bc7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/context/HitMark.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCAnimation.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCAnimation.class new file mode 100644 index 000000000..0f01ceaf8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCAnimation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCFaceEntity.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCFaceEntity.class new file mode 100644 index 000000000..622168908 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCFaceEntity.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCFaceLocation.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCFaceLocation.class new file mode 100644 index 000000000..8f08ecfe2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCFaceLocation.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCForceChat.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCForceChat.class new file mode 100644 index 000000000..dd6f881f2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCForceChat.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCGraphic.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCGraphic.class new file mode 100644 index 000000000..2c22f6a60 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCGraphic.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCHitFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCHitFlag.class new file mode 100644 index 000000000..f3f0f161d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCHitFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCHitFlag1.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCHitFlag1.class new file mode 100644 index 000000000..fb9e94afb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCHitFlag1.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCSwitchId.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCSwitchId.class new file mode 100644 index 000000000..e4a89817a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/npc/NPCSwitchId.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/AnimationFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/AnimationFlag.class new file mode 100644 index 000000000..14137d846 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/AnimationFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/AppearanceFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/AppearanceFlag.class new file mode 100644 index 000000000..93351c2c4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/AppearanceFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ChatFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ChatFlag.class new file mode 100644 index 000000000..1fb75de23 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ChatFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/FaceEntityFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/FaceEntityFlag.class new file mode 100644 index 000000000..5ece0f79f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/FaceEntityFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/FaceLocationFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/FaceLocationFlag.class new file mode 100644 index 000000000..315a248dd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/FaceLocationFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ForceChatFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ForceChatFlag.class new file mode 100644 index 000000000..1783e841f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ForceChatFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ForceMovementFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ForceMovementFlag.class new file mode 100644 index 000000000..32267b0a9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/ForceMovementFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/GraphicFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/GraphicFlag.class new file mode 100644 index 000000000..b4fe3bda2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/GraphicFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/HitUpdateFlag.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/HitUpdateFlag.class new file mode 100644 index 000000000..49eef8fc1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/HitUpdateFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/HitUpdateFlag1.class b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/HitUpdateFlag1.class new file mode 100644 index 000000000..e40f6707d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/game/world/update/flag/player/HitUpdateFlag1.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/ConsoleFrame.class b/CompiledServer/production/Server/org/crandor/gui/ConsoleFrame.class new file mode 100644 index 000000000..38a82f684 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/ConsoleFrame.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/ConsoleTab.class b/CompiledServer/production/Server/org/crandor/gui/ConsoleTab.class new file mode 100644 index 000000000..83ceeab62 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/ConsoleTab.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/component/ConsoleLogger.class b/CompiledServer/production/Server/org/crandor/gui/component/ConsoleLogger.class new file mode 100644 index 000000000..fc45f9e5d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/component/ConsoleLogger.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/component/PlayerViewer.class b/CompiledServer/production/Server/org/crandor/gui/component/PlayerViewer.class new file mode 100644 index 000000000..e5666dd17 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/component/PlayerViewer.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$1.class b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$1.class new file mode 100644 index 000000000..dc12f81d5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$2.class b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$2.class new file mode 100644 index 000000000..45920e716 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$3.class b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$3.class new file mode 100644 index 000000000..294cd249e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$4.class b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$4.class new file mode 100644 index 000000000..57b947e3c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$5.class b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$5.class new file mode 100644 index 000000000..d68396d42 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab$5.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab.class b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab.class new file mode 100644 index 000000000..a69023c5c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/GrandExchangeTab.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/PlayerTab$1.class b/CompiledServer/production/Server/org/crandor/gui/tab/PlayerTab$1.class new file mode 100644 index 000000000..ae1ad8afe Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/PlayerTab$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/PlayerTab.class b/CompiledServer/production/Server/org/crandor/gui/tab/PlayerTab.class new file mode 100644 index 000000000..0963b28f1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/PlayerTab.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$1.class b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$1.class new file mode 100644 index 000000000..54f74b3df Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$2.class b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$2.class new file mode 100644 index 000000000..3ecfae176 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$3.class b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$3.class new file mode 100644 index 000000000..0eb63b8fa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$4.class b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$4.class new file mode 100644 index 000000000..a5afa6acc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$4.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class new file mode 100644 index 000000000..f57803a16 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab$StatsTextPane.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab.class b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab.class new file mode 100644 index 000000000..869d100c5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/StatisticsTab.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$1.class b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$1.class new file mode 100644 index 000000000..0ac5eacde Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$2.class b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$2.class new file mode 100644 index 000000000..a7721098e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$3.class b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$3.class new file mode 100644 index 000000000..5f8817ab9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab$3.class differ diff --git a/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab.class b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab.class new file mode 100644 index 000000000..90bcb3bf0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/gui/tab/UtilityTab.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/Constants.class b/CompiledServer/production/Server/org/crandor/net/Constants.class new file mode 100644 index 000000000..8a9ccd8fd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/Constants.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/EventProducer.class b/CompiledServer/production/Server/org/crandor/net/EventProducer.class new file mode 100644 index 000000000..031f83763 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/EventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/IoEventHandler.class b/CompiledServer/production/Server/org/crandor/net/IoEventHandler.class new file mode 100644 index 000000000..cb92f71b5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/IoEventHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/IoReadEvent.class b/CompiledServer/production/Server/org/crandor/net/IoReadEvent.class new file mode 100644 index 000000000..252c802bc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/IoReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/IoSession$1.class b/CompiledServer/production/Server/org/crandor/net/IoSession$1.class new file mode 100644 index 000000000..84b5bfe74 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/IoSession$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/IoSession.class b/CompiledServer/production/Server/org/crandor/net/IoSession.class new file mode 100644 index 000000000..31cfa1891 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/IoSession.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/IoWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/IoWriteEvent.class new file mode 100644 index 000000000..526fa2654 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/IoWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/JS5Queue$1.class b/CompiledServer/production/Server/org/crandor/net/JS5Queue$1.class new file mode 100644 index 000000000..9c47cd9a9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/JS5Queue$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/JS5Queue.class b/CompiledServer/production/Server/org/crandor/net/JS5Queue.class new file mode 100644 index 000000000..e1344c23f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/JS5Queue.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/NioReactor.class b/CompiledServer/production/Server/org/crandor/net/NioReactor.class new file mode 100644 index 000000000..eb51e024e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/NioReactor.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/ServerSocketConnection.class b/CompiledServer/production/Server/org/crandor/net/ServerSocketConnection.class new file mode 100644 index 000000000..78a1308ad Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/ServerSocketConnection.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/MSEventHandler.class b/CompiledServer/production/Server/org/crandor/net/amsc/MSEventHandler.class new file mode 100644 index 000000000..4da4d151a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/MSEventHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/MSPacketRepository$1.class b/CompiledServer/production/Server/org/crandor/net/amsc/MSPacketRepository$1.class new file mode 100644 index 000000000..df3d4bb86 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/MSPacketRepository$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/MSPacketRepository.class b/CompiledServer/production/Server/org/crandor/net/amsc/MSPacketRepository.class new file mode 100644 index 000000000..b7e714f03 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/MSPacketRepository.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/ManagementServerState.class b/CompiledServer/production/Server/org/crandor/net/amsc/ManagementServerState.class new file mode 100644 index 000000000..1b37048ad Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/ManagementServerState.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/WorldCommunicator$1.class b/CompiledServer/production/Server/org/crandor/net/amsc/WorldCommunicator$1.class new file mode 100644 index 000000000..e054678b0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/WorldCommunicator$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/WorldCommunicator.class b/CompiledServer/production/Server/org/crandor/net/amsc/WorldCommunicator.class new file mode 100644 index 000000000..cc69b3309 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/WorldCommunicator.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/amsc/WorldStatistics.class b/CompiledServer/production/Server/org/crandor/net/amsc/WorldStatistics.class new file mode 100644 index 000000000..d48db3d16 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/amsc/WorldStatistics.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/GameReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/GameReadEvent.class new file mode 100644 index 000000000..a8dad6d44 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/GameReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/GameWriteEvent$1.class b/CompiledServer/production/Server/org/crandor/net/event/GameWriteEvent$1.class new file mode 100644 index 000000000..3ebf344ea Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/GameWriteEvent$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/GameWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/GameWriteEvent.class new file mode 100644 index 000000000..75c3ef6b2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/GameWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/HSReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/HSReadEvent.class new file mode 100644 index 000000000..640be3698 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/HSReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/HSWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/HSWriteEvent.class new file mode 100644 index 000000000..d069eadef Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/HSWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/JS5ReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/JS5ReadEvent.class new file mode 100644 index 000000000..2f00f2784 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/JS5ReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/JS5WriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/JS5WriteEvent.class new file mode 100644 index 000000000..c1922c6b4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/JS5WriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/LoginReadEvent$1.class b/CompiledServer/production/Server/org/crandor/net/event/LoginReadEvent$1.class new file mode 100644 index 000000000..4f0b0a026 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/LoginReadEvent$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/LoginReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/LoginReadEvent.class new file mode 100644 index 000000000..dcc5fe1f5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/LoginReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/LoginWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/LoginWriteEvent.class new file mode 100644 index 000000000..449665dc0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/LoginWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/MSHSReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/MSHSReadEvent.class new file mode 100644 index 000000000..6fc1f20d6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/MSHSReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/MSHSWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/MSHSWriteEvent.class new file mode 100644 index 000000000..6c062a383 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/MSHSWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/MSReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/MSReadEvent.class new file mode 100644 index 000000000..6f9b68193 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/MSReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/MSWriteEvent$1.class b/CompiledServer/production/Server/org/crandor/net/event/MSWriteEvent$1.class new file mode 100644 index 000000000..815e9caa2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/MSWriteEvent$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/MSWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/MSWriteEvent.class new file mode 100644 index 000000000..86061a003 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/MSWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/RegistryReadEvent.class b/CompiledServer/production/Server/org/crandor/net/event/RegistryReadEvent.class new file mode 100644 index 000000000..1d998b279 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/RegistryReadEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/event/RegistryWriteEvent.class b/CompiledServer/production/Server/org/crandor/net/event/RegistryWriteEvent.class new file mode 100644 index 000000000..7d014a650 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/event/RegistryWriteEvent.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/lobby/WorldDefinition.class b/CompiledServer/production/Server/org/crandor/net/lobby/WorldDefinition.class new file mode 100644 index 000000000..b04abe1f7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/lobby/WorldDefinition.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/lobby/WorldList.class b/CompiledServer/production/Server/org/crandor/net/lobby/WorldList.class new file mode 100644 index 000000000..31999e5f1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/lobby/WorldList.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/Context.class b/CompiledServer/production/Server/org/crandor/net/packet/Context.class new file mode 100644 index 000000000..cd87bc724 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/Context.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/IncomingPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/IncomingPacket.class new file mode 100644 index 000000000..6e17030f5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/IncomingPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/IoBuffer.class b/CompiledServer/production/Server/org/crandor/net/packet/IoBuffer.class new file mode 100644 index 000000000..e183534c0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/IoBuffer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/OutgoingPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/OutgoingPacket.class new file mode 100644 index 000000000..ec6bb3ff1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/OutgoingPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/PacketHeader.class b/CompiledServer/production/Server/org/crandor/net/packet/PacketHeader.class new file mode 100644 index 000000000..d25096666 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/PacketHeader.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/PacketRepository.class b/CompiledServer/production/Server/org/crandor/net/packet/PacketRepository.class new file mode 100644 index 000000000..d6f07388e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/PacketRepository.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/AccessMaskContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/AccessMaskContext.class new file mode 100644 index 000000000..f7918db53 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/AccessMaskContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/AnimateInterfaceContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/AnimateInterfaceContext.class new file mode 100644 index 000000000..3c6c188db Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/AnimateInterfaceContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/AnimateObjectContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/AnimateObjectContext.class new file mode 100644 index 000000000..c1710febc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/AnimateObjectContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/AreaPositionContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/AreaPositionContext.class new file mode 100644 index 000000000..003209573 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/AreaPositionContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/BuildItemContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/BuildItemContext.class new file mode 100644 index 000000000..7ea49bd2a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/BuildItemContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/BuildObjectContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/BuildObjectContext.class new file mode 100644 index 000000000..2633dac7e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/BuildObjectContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/CSConfigContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/CSConfigContext.class new file mode 100644 index 000000000..d3a87d30d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/CSConfigContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/CameraContext$CameraType.class b/CompiledServer/production/Server/org/crandor/net/packet/context/CameraContext$CameraType.class new file mode 100644 index 000000000..322012644 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/CameraContext$CameraType.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/CameraContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/CameraContext.class new file mode 100644 index 000000000..145caf0d8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/CameraContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/ChildPositionContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/ChildPositionContext.class new file mode 100644 index 000000000..58a2e3a58 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/ChildPositionContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/ClanContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/ClanContext.class new file mode 100644 index 000000000..2a4a74293 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/ClanContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/ClearChunkContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/ClearChunkContext.class new file mode 100644 index 000000000..71d63916b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/ClearChunkContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/ConfigContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/ConfigContext.class new file mode 100644 index 000000000..1f0972c2e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/ConfigContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/ContactContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/ContactContext.class new file mode 100644 index 000000000..f53a6a5cc Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/ContactContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/ContainerContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/ContainerContext.class new file mode 100644 index 000000000..191a6b18f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/ContainerContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/DefaultContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/DefaultContext.class new file mode 100644 index 000000000..e43fb9a7f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/DefaultContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/DisplayModelContext$ModelType.class b/CompiledServer/production/Server/org/crandor/net/packet/context/DisplayModelContext$ModelType.class new file mode 100644 index 000000000..4de81bbba Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/DisplayModelContext$ModelType.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/DisplayModelContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/DisplayModelContext.class new file mode 100644 index 000000000..709a2bd07 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/DisplayModelContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/DynamicSceneContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/DynamicSceneContext.class new file mode 100644 index 000000000..1d3558da7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/DynamicSceneContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/GameMessageContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/GameMessageContext.class new file mode 100644 index 000000000..9ee73d87f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/GameMessageContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/GrandExchangeContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/GrandExchangeContext.class new file mode 100644 index 000000000..33e6dd324 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/GrandExchangeContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/HintIconContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/HintIconContext.class new file mode 100644 index 000000000..b1a4ebb5c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/HintIconContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/IntegerContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/IntegerContext.class new file mode 100644 index 000000000..e3577f573 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/IntegerContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/InteractionOptionContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/InteractionOptionContext.class new file mode 100644 index 000000000..52f54cfb9 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/InteractionOptionContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/InterfaceConfigContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/InterfaceConfigContext.class new file mode 100644 index 000000000..f09e53ff5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/InterfaceConfigContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/InterfaceContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/InterfaceContext.class new file mode 100644 index 000000000..d5807e7e7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/InterfaceContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/LocationContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/LocationContext.class new file mode 100644 index 000000000..142f0bd4b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/LocationContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/MessageContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/MessageContext.class new file mode 100644 index 000000000..867c2543e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/MessageContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/MinimapStateContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/MinimapStateContext.class new file mode 100644 index 000000000..565544726 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/MinimapStateContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/MusicContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/MusicContext.class new file mode 100644 index 000000000..55242a985 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/MusicContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/PlayerContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/PlayerContext.class new file mode 100644 index 000000000..8dfde755c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/PlayerContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/PositionedGraphicContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/PositionedGraphicContext.class new file mode 100644 index 000000000..07193be71 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/PositionedGraphicContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/RunScriptContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/RunScriptContext.class new file mode 100644 index 000000000..a930e0417 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/RunScriptContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/SceneGraphContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/SceneGraphContext.class new file mode 100644 index 000000000..fd317e59e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/SceneGraphContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/SkillContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/SkillContext.class new file mode 100644 index 000000000..49beb1912 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/SkillContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/StringContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/StringContext.class new file mode 100644 index 000000000..982a51c68 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/StringContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/SystemUpdateContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/SystemUpdateContext.class new file mode 100644 index 000000000..3877beb0d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/SystemUpdateContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/WalkOptionContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/WalkOptionContext.class new file mode 100644 index 000000000..deeef7943 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/WalkOptionContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/context/WindowsPaneContext.class b/CompiledServer/production/Server/org/crandor/net/packet/context/WindowsPaneContext.class new file mode 100644 index 000000000..f4d66f799 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/context/WindowsPaneContext.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ActionButtonPacket$1.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ActionButtonPacket$1.class new file mode 100644 index 000000000..2708b7aba Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ActionButtonPacket$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ActionButtonPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ActionButtonPacket.class new file mode 100644 index 000000000..ed948991c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ActionButtonPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/CameraMovementPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/CameraMovementPacket.class new file mode 100644 index 000000000..96451e619 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/CameraMovementPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ChatPacket$1.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ChatPacket$1.class new file mode 100644 index 000000000..525beca21 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ChatPacket$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ChatPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ChatPacket.class new file mode 100644 index 000000000..e648465f6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ChatPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ChatSettingsPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ChatSettingsPacket.class new file mode 100644 index 000000000..20fa266b4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ChatSettingsPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ClanPacketHandler.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ClanPacketHandler.class new file mode 100644 index 000000000..0c5e5670f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ClanPacketHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ClientFocusPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ClientFocusPacket.class new file mode 100644 index 000000000..9b318381f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ClientFocusPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/CommandPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/CommandPacket.class new file mode 100644 index 000000000..7c77cb024 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/CommandPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/CommunicationPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/CommunicationPacket.class new file mode 100644 index 000000000..48c7a8055 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/CommunicationPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/DisplayUpdatePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/DisplayUpdatePacket.class new file mode 100644 index 000000000..13835cae2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/DisplayUpdatePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ExaminePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ExaminePacket.class new file mode 100644 index 000000000..0ef19e719 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ExaminePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/GrandExchangePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/GrandExchangePacket.class new file mode 100644 index 000000000..76163d567 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/GrandExchangePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/IdlePacketHandler.class b/CompiledServer/production/Server/org/crandor/net/packet/in/IdlePacketHandler.class new file mode 100644 index 000000000..a449b7776 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/IdlePacketHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/InteractionPacket$1.class b/CompiledServer/production/Server/org/crandor/net/packet/in/InteractionPacket$1.class new file mode 100644 index 000000000..759d96f37 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/InteractionPacket$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/InteractionPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/InteractionPacket.class new file mode 100644 index 000000000..dc6a61ab5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/InteractionPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/InterfaceUseOnPacket$1.class b/CompiledServer/production/Server/org/crandor/net/packet/in/InterfaceUseOnPacket$1.class new file mode 100644 index 000000000..c5edb70fd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/InterfaceUseOnPacket$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/InterfaceUseOnPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/InterfaceUseOnPacket.class new file mode 100644 index 000000000..bcb05506b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/InterfaceUseOnPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ItemActionPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ItemActionPacket.class new file mode 100644 index 000000000..0e6244152 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ItemActionPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/MouseClickPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/MouseClickPacket.class new file mode 100644 index 000000000..5c7fc34e1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/MouseClickPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/MusicPacketHandler.class b/CompiledServer/production/Server/org/crandor/net/packet/in/MusicPacketHandler.class new file mode 100644 index 000000000..07a8278e6 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/MusicPacketHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/PingPacketHandler.class b/CompiledServer/production/Server/org/crandor/net/packet/in/PingPacketHandler.class new file mode 100644 index 000000000..51c1f094c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/PingPacketHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/QuickChatPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/QuickChatPacket.class new file mode 100644 index 000000000..d8bc8b420 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/QuickChatPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/RegionChangePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/RegionChangePacket.class new file mode 100644 index 000000000..457e8bed0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/RegionChangePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/ReportAbusePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/ReportAbusePacket.class new file mode 100644 index 000000000..746a84667 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/ReportAbusePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/RunScriptPacketHandler.class b/CompiledServer/production/Server/org/crandor/net/packet/in/RunScriptPacketHandler.class new file mode 100644 index 000000000..3c7622d14 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/RunScriptPacketHandler.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/SlotSwitchPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/SlotSwitchPacket.class new file mode 100644 index 000000000..588a62562 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/SlotSwitchPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/UpdateInterfaceCounter.class b/CompiledServer/production/Server/org/crandor/net/packet/in/UpdateInterfaceCounter.class new file mode 100644 index 000000000..4a0100478 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/UpdateInterfaceCounter.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/WalkPacket$1.class b/CompiledServer/production/Server/org/crandor/net/packet/in/WalkPacket$1.class new file mode 100644 index 000000000..8802c2704 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/WalkPacket$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/in/WalkPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/in/WalkPacket.class new file mode 100644 index 000000000..44feaa3c1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/in/WalkPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/AccessMask.class b/CompiledServer/production/Server/org/crandor/net/packet/out/AccessMask.class new file mode 100644 index 000000000..9e1c8e8b1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/AccessMask.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/AnimateInterface.class b/CompiledServer/production/Server/org/crandor/net/packet/out/AnimateInterface.class new file mode 100644 index 000000000..22f9cd148 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/AnimateInterface.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/AnimateObjectPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/AnimateObjectPacket.class new file mode 100644 index 000000000..630d487c5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/AnimateObjectPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/AudioPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/AudioPacket.class new file mode 100644 index 000000000..3e43687ff Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/AudioPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/BuildDynamicScene.class b/CompiledServer/production/Server/org/crandor/net/packet/out/BuildDynamicScene.class new file mode 100644 index 000000000..0543001f4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/BuildDynamicScene.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/CSConfigPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/CSConfigPacket.class new file mode 100644 index 000000000..04a1e9102 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/CSConfigPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/CameraViewPacket$1.class b/CompiledServer/production/Server/org/crandor/net/packet/out/CameraViewPacket$1.class new file mode 100644 index 000000000..c103d6e9d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/CameraViewPacket$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/CameraViewPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/CameraViewPacket.class new file mode 100644 index 000000000..6fa62c139 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/CameraViewPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ClearGroundItem.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearGroundItem.class new file mode 100644 index 000000000..1fc343110 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearGroundItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ClearMinimapFlag.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearMinimapFlag.class new file mode 100644 index 000000000..931da909b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearMinimapFlag.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ClearObject.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearObject.class new file mode 100644 index 000000000..efc7bd524 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearObject.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ClearRegionChunk.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearRegionChunk.class new file mode 100644 index 000000000..96a80daa8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ClearRegionChunk.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/CloseInterface.class b/CompiledServer/production/Server/org/crandor/net/packet/out/CloseInterface.class new file mode 100644 index 000000000..13255612f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/CloseInterface.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/CommunicationMessage.class b/CompiledServer/production/Server/org/crandor/net/packet/out/CommunicationMessage.class new file mode 100644 index 000000000..fe63c06a0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/CommunicationMessage.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/Config.class b/CompiledServer/production/Server/org/crandor/net/packet/out/Config.class new file mode 100644 index 000000000..6c09b4442 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/Config.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ConstructGroundItem.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ConstructGroundItem.class new file mode 100644 index 000000000..0942bcfde Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ConstructGroundItem.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ConstructObject.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ConstructObject.class new file mode 100644 index 000000000..c54939890 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ConstructObject.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ContactPackets.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ContactPackets.class new file mode 100644 index 000000000..4bc5454e4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ContactPackets.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/ContainerPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/ContainerPacket.class new file mode 100644 index 000000000..7e1878498 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/ContainerPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/DisplayModel$1.class b/CompiledServer/production/Server/org/crandor/net/packet/out/DisplayModel$1.class new file mode 100644 index 000000000..be909f77e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/DisplayModel$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/DisplayModel.class b/CompiledServer/production/Server/org/crandor/net/packet/out/DisplayModel.class new file mode 100644 index 000000000..f67e3316b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/DisplayModel.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/GameMessage.class b/CompiledServer/production/Server/org/crandor/net/packet/out/GameMessage.class new file mode 100644 index 000000000..64665af0c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/GameMessage.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/GrandExchangePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/GrandExchangePacket.class new file mode 100644 index 000000000..0389af3f5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/GrandExchangePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/HintIcon.class b/CompiledServer/production/Server/org/crandor/net/packet/out/HintIcon.class new file mode 100644 index 000000000..526bcd7ec Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/HintIcon.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/InstancedLocationUpdate.class b/CompiledServer/production/Server/org/crandor/net/packet/out/InstancedLocationUpdate.class new file mode 100644 index 000000000..9445f2c6a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/InstancedLocationUpdate.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/InteractionOption.class b/CompiledServer/production/Server/org/crandor/net/packet/out/InteractionOption.class new file mode 100644 index 000000000..e14c65b80 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/InteractionOption.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/Interface.class b/CompiledServer/production/Server/org/crandor/net/packet/out/Interface.class new file mode 100644 index 000000000..c7d5b57aa Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/Interface.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/InterfaceConfig.class b/CompiledServer/production/Server/org/crandor/net/packet/out/InterfaceConfig.class new file mode 100644 index 000000000..38c852a61 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/InterfaceConfig.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/LoginPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/LoginPacket.class new file mode 100644 index 000000000..61d2d234a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/LoginPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/Logout.class b/CompiledServer/production/Server/org/crandor/net/packet/out/Logout.class new file mode 100644 index 000000000..8eed454ad Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/Logout.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/MinimapState.class b/CompiledServer/production/Server/org/crandor/net/packet/out/MinimapState.class new file mode 100644 index 000000000..e3858c4b7 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/MinimapState.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/MusicPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/MusicPacket.class new file mode 100644 index 000000000..b8938140f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/MusicPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/PingPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/PingPacket.class new file mode 100644 index 000000000..ade01b14f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/PingPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/PositionedGraphic.class b/CompiledServer/production/Server/org/crandor/net/packet/out/PositionedGraphic.class new file mode 100644 index 000000000..e4b02da07 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/PositionedGraphic.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/RepositionChild.class b/CompiledServer/production/Server/org/crandor/net/packet/out/RepositionChild.class new file mode 100644 index 000000000..72dc9a264 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/RepositionChild.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/RunEnergy.class b/CompiledServer/production/Server/org/crandor/net/packet/out/RunEnergy.class new file mode 100644 index 000000000..59688980d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/RunEnergy.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/RunScriptPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/RunScriptPacket.class new file mode 100644 index 000000000..0130b0e54 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/RunScriptPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/SetWalkOption.class b/CompiledServer/production/Server/org/crandor/net/packet/out/SetWalkOption.class new file mode 100644 index 000000000..c5cf679bb Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/SetWalkOption.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/SkillLevel.class b/CompiledServer/production/Server/org/crandor/net/packet/out/SkillLevel.class new file mode 100644 index 000000000..39cc4ffce Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/SkillLevel.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/StringPacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/StringPacket.class new file mode 100644 index 000000000..2f88f2365 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/StringPacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/SystemUpdatePacket.class b/CompiledServer/production/Server/org/crandor/net/packet/out/SystemUpdatePacket.class new file mode 100644 index 000000000..46fbb1ad5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/SystemUpdatePacket.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateAreaPosition.class b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateAreaPosition.class new file mode 100644 index 000000000..efbc59624 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateAreaPosition.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateClanChat.class b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateClanChat.class new file mode 100644 index 000000000..fb263b152 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateClanChat.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateGroundItemAmount.class b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateGroundItemAmount.class new file mode 100644 index 000000000..4044f4564 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateGroundItemAmount.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateRandomFile.class b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateRandomFile.class new file mode 100644 index 000000000..51058a2fd Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateRandomFile.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateSceneGraph.class b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateSceneGraph.class new file mode 100644 index 000000000..4f50e7547 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/UpdateSceneGraph.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/WeightUpdate.class b/CompiledServer/production/Server/org/crandor/net/packet/out/WeightUpdate.class new file mode 100644 index 000000000..59868ee50 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/WeightUpdate.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/packet/out/WindowsPane.class b/CompiledServer/production/Server/org/crandor/net/packet/out/WindowsPane.class new file mode 100644 index 000000000..975ab5e17 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/packet/out/WindowsPane.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/GameEventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/GameEventProducer.class new file mode 100644 index 000000000..6429c873a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/GameEventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/HSEventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/HSEventProducer.class new file mode 100644 index 000000000..a8d1a18c5 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/HSEventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/JS5EventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/JS5EventProducer.class new file mode 100644 index 000000000..01edc6850 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/JS5EventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/LoginEventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/LoginEventProducer.class new file mode 100644 index 000000000..e8c8fe191 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/LoginEventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/MSEventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/MSEventProducer.class new file mode 100644 index 000000000..9d7242a24 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/MSEventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/MSHSEventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/MSHSEventProducer.class new file mode 100644 index 000000000..8c42c832c Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/MSHSEventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/producer/RegistryEventProducer.class b/CompiledServer/production/Server/org/crandor/net/producer/RegistryEventProducer.class new file mode 100644 index 000000000..f964b1cbf Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/producer/RegistryEventProducer.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister$1.class b/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister$1.class new file mode 100644 index 000000000..21446516e Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister$2.class b/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister$2.class new file mode 100644 index 000000000..3e1e66808 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister$2.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister.class b/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister.class new file mode 100644 index 000000000..a0b348247 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/registry/AccountRegister.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/registry/RegistryDetails.class b/CompiledServer/production/Server/org/crandor/net/registry/RegistryDetails.class new file mode 100644 index 000000000..e2ab08d0a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/registry/RegistryDetails.class differ diff --git a/CompiledServer/production/Server/org/crandor/net/registry/RegistryResponse.class b/CompiledServer/production/Server/org/crandor/net/registry/RegistryResponse.class new file mode 100644 index 000000000..613357782 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/net/registry/RegistryResponse.class differ diff --git a/CompiledServer/production/Server/org/crandor/plugin/InitializablePlugin.class b/CompiledServer/production/Server/org/crandor/plugin/InitializablePlugin.class new file mode 100644 index 000000000..b6bf34857 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/plugin/InitializablePlugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/plugin/Plugin.class b/CompiledServer/production/Server/org/crandor/plugin/Plugin.class new file mode 100644 index 000000000..2bb41490a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/plugin/Plugin.class differ diff --git a/CompiledServer/production/Server/org/crandor/plugin/PluginManager.class b/CompiledServer/production/Server/org/crandor/plugin/PluginManager.class new file mode 100644 index 000000000..865f15ab1 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/plugin/PluginManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/plugin/PluginManifest.class b/CompiledServer/production/Server/org/crandor/plugin/PluginManifest.class new file mode 100644 index 000000000..f0f112f1b Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/plugin/PluginManifest.class differ diff --git a/CompiledServer/production/Server/org/crandor/plugin/PluginType.class b/CompiledServer/production/Server/org/crandor/plugin/PluginType.class new file mode 100644 index 000000000..60d80fc6a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/plugin/PluginType.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/ConflictRemover.class b/CompiledServer/production/Server/org/crandor/tools/ConflictRemover.class new file mode 100644 index 000000000..31f9c3c84 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/ConflictRemover.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/LastNameFirstNameP9A.class b/CompiledServer/production/Server/org/crandor/tools/LastNameFirstNameP9A.class new file mode 100644 index 000000000..ac7ec4590 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/LastNameFirstNameP9A.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/Lesson.class b/CompiledServer/production/Server/org/crandor/tools/Lesson.class new file mode 100644 index 000000000..0bf004989 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/Lesson.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/PlayerLoader.class b/CompiledServer/production/Server/org/crandor/tools/PlayerLoader.class new file mode 100644 index 000000000..42632a4b4 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/PlayerLoader.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/RandomFunction.class b/CompiledServer/production/Server/org/crandor/tools/RandomFunction.class new file mode 100644 index 000000000..e02948278 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/RandomFunction.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/StringUtils.class b/CompiledServer/production/Server/org/crandor/tools/StringUtils.class new file mode 100644 index 000000000..49c9758f8 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/StringUtils.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/Test.class b/CompiledServer/production/Server/org/crandor/tools/Test.class new file mode 100644 index 000000000..2c7bce518 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/Test.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/TimeStamp.class b/CompiledServer/production/Server/org/crandor/tools/TimeStamp.class new file mode 100644 index 000000000..3dd7638be Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/TimeStamp.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/URLParser$1.class b/CompiledServer/production/Server/org/crandor/tools/URLParser$1.class new file mode 100644 index 000000000..a03490dd0 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/URLParser$1.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/URLParser.class b/CompiledServer/production/Server/org/crandor/tools/URLParser.class new file mode 100644 index 000000000..5966b4b30 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/URLParser.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/XTEAKeyPacker.class b/CompiledServer/production/Server/org/crandor/tools/XTEAKeyPacker.class new file mode 100644 index 000000000..2681083ef Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/XTEAKeyPacker.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/XTEAKeyParser.class b/CompiledServer/production/Server/org/crandor/tools/XTEAKeyParser.class new file mode 100644 index 000000000..33181e903 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/XTEAKeyParser.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/backup/AutoBackup.class b/CompiledServer/production/Server/org/crandor/tools/backup/AutoBackup.class new file mode 100644 index 000000000..8336f079a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/backup/AutoBackup.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/firewatch/Firewatch.class b/CompiledServer/production/Server/org/crandor/tools/firewatch/Firewatch.class new file mode 100644 index 000000000..facfe7e97 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/firewatch/Firewatch.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/mysql/Database.class b/CompiledServer/production/Server/org/crandor/tools/mysql/Database.class new file mode 100644 index 000000000..f3d7df99a Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/mysql/Database.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/mysql/DatabaseManager$Databases.class b/CompiledServer/production/Server/org/crandor/tools/mysql/DatabaseManager$Databases.class new file mode 100644 index 000000000..f21fdeb1d Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/mysql/DatabaseManager$Databases.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/mysql/DatabaseManager.class b/CompiledServer/production/Server/org/crandor/tools/mysql/DatabaseManager.class new file mode 100644 index 000000000..13ed3cc14 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/mysql/DatabaseManager.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/mysql/Query.class b/CompiledServer/production/Server/org/crandor/tools/mysql/Query.class new file mode 100644 index 000000000..a534f7194 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/mysql/Query.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/mysql/Results.class b/CompiledServer/production/Server/org/crandor/tools/mysql/Results.class new file mode 100644 index 000000000..0dcd6a7ea Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/mysql/Results.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/npc/DropRateSimulator.class b/CompiledServer/production/Server/org/crandor/tools/npc/DropRateSimulator.class new file mode 100644 index 000000000..9883d6737 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/npc/DropRateSimulator.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/npc/TestStats.class b/CompiledServer/production/Server/org/crandor/tools/npc/TestStats.class new file mode 100644 index 000000000..62e7214ac Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/npc/TestStats.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/plugin/PluginFixer.class b/CompiledServer/production/Server/org/crandor/tools/plugin/PluginFixer.class new file mode 100644 index 000000000..d0f3b143f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/plugin/PluginFixer.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/plugin/PluginPacker.class b/CompiledServer/production/Server/org/crandor/tools/plugin/PluginPacker.class new file mode 100644 index 000000000..ad683a60f Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/plugin/PluginPacker.class differ diff --git a/CompiledServer/production/Server/org/crandor/tools/plugin/PluginTest.class b/CompiledServer/production/Server/org/crandor/tools/plugin/PluginTest.class new file mode 100644 index 000000000..4a80f4ef2 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/tools/plugin/PluginTest.class differ diff --git a/CompiledServer/production/Server/org/crandor/worker/MajorUpdateWorker.class b/CompiledServer/production/Server/org/crandor/worker/MajorUpdateWorker.class new file mode 100644 index 000000000..525ed5436 Binary files /dev/null and b/CompiledServer/production/Server/org/crandor/worker/MajorUpdateWorker.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowBrother.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowBrother.class new file mode 100644 index 000000000..0829f949c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowBrother.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin$1.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin$1.class new file mode 100644 index 000000000..7c035bc85 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin$2.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin$2.class new file mode 100644 index 000000000..49fe320d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin.class new file mode 100644 index 000000000..4428eb894 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsActivityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsCrypt$1.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsCrypt$1.class new file mode 100644 index 000000000..5f6c57354 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsCrypt$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsCrypt.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsCrypt.class new file mode 100644 index 000000000..b6c170a4b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsCrypt.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsEquipment$BarrowsWrapper.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsEquipment$BarrowsWrapper.class new file mode 100644 index 000000000..3809022e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsEquipment$BarrowsWrapper.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsEquipment.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsEquipment.class new file mode 100644 index 000000000..043174726 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsEquipment.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/BarrowsPuzzle.class b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsPuzzle.class new file mode 100644 index 000000000..912c3457f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/BarrowsPuzzle.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/RewardChest.class b/CompiledServer/production/Server/plugin/activity/barrows/RewardChest.class new file mode 100644 index 000000000..a729ca434 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/RewardChest.class differ diff --git a/CompiledServer/production/Server/plugin/activity/barrows/TunnelEntranceDialogue.class b/CompiledServer/production/Server/plugin/activity/barrows/TunnelEntranceDialogue.class new file mode 100644 index 000000000..2ed0641c3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/barrows/TunnelEntranceDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BHOptionHandler$1.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BHOptionHandler$1.class new file mode 100644 index 000000000..feacd925b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BHOptionHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BHOptionHandler.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BHOptionHandler.class new file mode 100644 index 000000000..937073e9b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BHOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BHScoreBoard.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BHScoreBoard.class new file mode 100644 index 000000000..1d0542bd4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BHScoreBoard.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyEntry.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyEntry.class new file mode 100644 index 000000000..f79175f01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyEntry.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$1.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$1.class new file mode 100644 index 000000000..85f61eea1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$2.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$2.class new file mode 100644 index 000000000..889652f4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$3.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$3.class new file mode 100644 index 000000000..3abb9781a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$4.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$4.class new file mode 100644 index 000000000..4720b32b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity.class new file mode 100644 index 000000000..3d8c403d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyHunterActivity.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyLocateSpell$1.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyLocateSpell$1.class new file mode 100644 index 000000000..dd0158774 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyLocateSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyLocateSpell.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyLocateSpell.class new file mode 100644 index 000000000..0f276a50b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/BountyLocateSpell.class differ diff --git a/CompiledServer/production/Server/plugin/activity/bountyhunter/CraterType.class b/CompiledServer/production/Server/plugin/activity/bountyhunter/CraterType.class new file mode 100644 index 000000000..590200784 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/bountyhunter/CraterType.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption$1.class b/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption$1.class new file mode 100644 index 000000000..06d42cd43 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption$2.class b/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption$2.class new file mode 100644 index 000000000..3bb0ba7f4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption.class b/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption.class new file mode 100644 index 000000000..d7f64cdc1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/CWChallengeOption.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$1.class b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$1.class new file mode 100644 index 000000000..cb6ce9130 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$2$1.class b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$2$1.class new file mode 100644 index 000000000..de8dd710f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$2.class b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$2.class new file mode 100644 index 000000000..f1c8c1009 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin.class b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin.class new file mode 100644 index 000000000..44c79b295 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsActivityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsChallengeRoom.class b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsChallengeRoom.class new file mode 100644 index 000000000..5cab6d29c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/clanwars/ClanWarsChallengeRoom.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/ChallengeOptionPlugin.class b/CompiledServer/production/Server/plugin/activity/duel/ChallengeOptionPlugin.class new file mode 100644 index 000000000..aab23bc63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/ChallengeOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArea$1.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$1.class new file mode 100644 index 000000000..7894c972c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArea$2.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$2.class new file mode 100644 index 000000000..a89868eb5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArea$3.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$3.class new file mode 100644 index 000000000..cf0e786ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArea$4.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$4.class new file mode 100644 index 000000000..dc43fe47f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArea$ForfeitTrapdoorPlugin.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$ForfeitTrapdoorPlugin.class new file mode 100644 index 000000000..30c367de1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArea$ForfeitTrapdoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArea.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArea.class new file mode 100644 index 000000000..3c8ab4e26 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArea.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelArenaActivity.class b/CompiledServer/production/Server/plugin/activity/duel/DuelArenaActivity.class new file mode 100644 index 000000000..6905699c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelArenaActivity.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelComponentPlugin.class b/CompiledServer/production/Server/plugin/activity/duel/DuelComponentPlugin.class new file mode 100644 index 000000000..907118766 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelComponentPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelReqModule.class b/CompiledServer/production/Server/plugin/activity/duel/DuelReqModule.class new file mode 100644 index 000000000..c978700d1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelReqModule.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelRule.class b/CompiledServer/production/Server/plugin/activity/duel/DuelRule.class new file mode 100644 index 000000000..7daea128e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelRule.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$1.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$1.class new file mode 100644 index 000000000..69d5722cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$2.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$2.class new file mode 100644 index 000000000..e9d0f0ecc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$3.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$3.class new file mode 100644 index 000000000..97ae5e554 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$4.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$4.class new file mode 100644 index 000000000..d553d1c8d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$5.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$5.class new file mode 100644 index 000000000..837407015 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$5.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$6.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$6.class new file mode 100644 index 000000000..89740cb28 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$6.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession$7.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$7.class new file mode 100644 index 000000000..b16907f8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession$7.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/DuelSession.class b/CompiledServer/production/Server/plugin/activity/duel/DuelSession.class new file mode 100644 index 000000000..430db5efa Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/DuelSession.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/StakeContainer$StakeListener.class b/CompiledServer/production/Server/plugin/activity/duel/StakeContainer$StakeListener.class new file mode 100644 index 000000000..0d250a550 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/StakeContainer$StakeListener.class differ diff --git a/CompiledServer/production/Server/plugin/activity/duel/StakeContainer.class b/CompiledServer/production/Server/plugin/activity/duel/StakeContainer.class new file mode 100644 index 000000000..89a449623 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/duel/StakeContainer.class differ diff --git a/CompiledServer/production/Server/plugin/activity/fog/FOGActivityPlugin$1.class b/CompiledServer/production/Server/plugin/activity/fog/FOGActivityPlugin$1.class new file mode 100644 index 000000000..99667a10a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/fog/FOGActivityPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/fog/FOGActivityPlugin.class b/CompiledServer/production/Server/plugin/activity/fog/FOGActivityPlugin.class new file mode 100644 index 000000000..5497fd73c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/fog/FOGActivityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/fog/FOGLobbyZone.class b/CompiledServer/production/Server/plugin/activity/fog/FOGLobbyZone.class new file mode 100644 index 000000000..2c14a1cfb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/fog/FOGLobbyZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/fog/FOGPlayer.class b/CompiledServer/production/Server/plugin/activity/fog/FOGPlayer.class new file mode 100644 index 000000000..b98318934 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/fog/FOGPlayer.class differ diff --git a/CompiledServer/production/Server/plugin/activity/fog/FOGWaitingZone.class b/CompiledServer/production/Server/plugin/activity/fog/FOGWaitingZone.class new file mode 100644 index 000000000..a43350681 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/fog/FOGWaitingZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gnomecopter/GCInformationSign.class b/CompiledServer/production/Server/plugin/activity/gnomecopter/GCInformationSign.class new file mode 100644 index 000000000..419dec686 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gnomecopter/GCInformationSign.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity$1.class b/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity$1.class new file mode 100644 index 000000000..68f623eb2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity$2.class b/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity$2.class new file mode 100644 index 000000000..aa83d96a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity.class b/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity.class new file mode 100644 index 000000000..6546a2094 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gnomecopter/GnomeCopterActivity.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin$MasterCrafterDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin$MasterCrafterDialogue.class new file mode 100644 index 000000000..8f9278b88 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin$MasterCrafterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin$TannerDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin$TannerDialogue.class new file mode 100644 index 000000000..35e2b12f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin$TannerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin.class b/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin.class new file mode 100644 index 000000000..82205b342 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/CraftingGuildPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/FishingGuild$MasterFisherDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/FishingGuild$MasterFisherDialogue.class new file mode 100644 index 000000000..4f9ee0ea8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/FishingGuild$MasterFisherDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/FishingGuild.class b/CompiledServer/production/Server/plugin/activity/guild/FishingGuild.class new file mode 100644 index 000000000..1f98a7909 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/FishingGuild.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/HeroGuildPlugin$JewelleryRechargePlugin.class b/CompiledServer/production/Server/plugin/activity/guild/HeroGuildPlugin$JewelleryRechargePlugin.class new file mode 100644 index 000000000..3d993ffa4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/HeroGuildPlugin$JewelleryRechargePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/HeroGuildPlugin.class b/CompiledServer/production/Server/plugin/activity/guild/HeroGuildPlugin.class new file mode 100644 index 000000000..1a6644dcb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/HeroGuildPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/MiningGuildPlugin.class b/CompiledServer/production/Server/plugin/activity/guild/MiningGuildPlugin.class new file mode 100644 index 000000000..26a5b9804 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/MiningGuildPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$ArmourSalesman.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$ArmourSalesman.class new file mode 100644 index 000000000..e781c66bf Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$ArmourSalesman.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$BowArrowSalesman.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$BowArrowSalesman.class new file mode 100644 index 000000000..2223f8089 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$BowArrowSalesman.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$GuardDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$GuardDialogue.class new file mode 100644 index 000000000..41e7d10d2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$GuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$LeatherWorkerDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$LeatherWorkerDialogue.class new file mode 100644 index 000000000..29e2f33f9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$LeatherWorkerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$RangingGuildDoorman.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$RangingGuildDoorman.class new file mode 100644 index 000000000..756544a9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$RangingGuildDoorman.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$TownAdvisor.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$TownAdvisor.class new file mode 100644 index 000000000..37ded3f8e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$TownAdvisor.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$TribalWeaponSalesman.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$TribalWeaponSalesman.class new file mode 100644 index 000000000..ba13f8d0b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$TribalWeaponSalesman.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$WarningInterface.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$WarningInterface.class new file mode 100644 index 000000000..a433c9bb5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin$WarningInterface.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin.class b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin.class new file mode 100644 index 000000000..afe46b7a2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/RangingGuildPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$ProfessorImblewynDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$ProfessorImblewynDialogue.class new file mode 100644 index 000000000..00c7aad57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$ProfessorImblewynDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$RobeStoreDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$RobeStoreDialogue.class new file mode 100644 index 000000000..b06a268b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$RobeStoreDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$WizardDistentorDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$WizardDistentorDialogue.class new file mode 100644 index 000000000..875b2d6eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$WizardDistentorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$WizardFrumsconeDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$WizardFrumsconeDialogue.class new file mode 100644 index 000000000..2fe1e3970 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$WizardFrumsconeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$ZavisticRarveDialogue.class b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$ZavisticRarveDialogue.class new file mode 100644 index 000000000..462597006 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin$ZavisticRarveDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin.class b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin.class new file mode 100644 index 000000000..b83090d00 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/guild/WizardGuildPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/EcumenicalKeyHandler.class b/CompiledServer/production/Server/plugin/activity/gwd/EcumenicalKeyHandler.class new file mode 100644 index 000000000..eb9a21c97 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/EcumenicalKeyHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDGraardorSwingHandler$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDGraardorSwingHandler$1.class new file mode 100644 index 000000000..c02cfd4dd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDGraardorSwingHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDGraardorSwingHandler.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDGraardorSwingHandler.class new file mode 100644 index 000000000..fe55ab348 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDGraardorSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDKreeArraSwingHandler$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDKreeArraSwingHandler$1.class new file mode 100644 index 000000000..b84f427eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDKreeArraSwingHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDKreeArraSwingHandler.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDKreeArraSwingHandler.class new file mode 100644 index 000000000..fcc51cb40 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDKreeArraSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDTsutsarothSwingHandler$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDTsutsarothSwingHandler$1.class new file mode 100644 index 000000000..959e3e9a0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDTsutsarothSwingHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDTsutsarothSwingHandler.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDTsutsarothSwingHandler.class new file mode 100644 index 000000000..f5a95d34e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDTsutsarothSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDZilyanaSwingHandler$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDZilyanaSwingHandler$1.class new file mode 100644 index 000000000..6e806ee39 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDZilyanaSwingHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GWDZilyanaSwingHandler.class b/CompiledServer/production/Server/plugin/activity/gwd/GWDZilyanaSwingHandler.class new file mode 100644 index 000000000..4f7394ef6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GWDZilyanaSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodWarsFaction.class b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsFaction.class new file mode 100644 index 000000000..e5b10608e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsFaction.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodWarsMinionNPC.class b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsMinionNPC.class new file mode 100644 index 000000000..25853ebe0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsMinionNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodWarsNPC$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsNPC$1.class new file mode 100644 index 000000000..2fb57caca Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodWarsNPC.class b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsNPC.class new file mode 100644 index 000000000..1e5a8eb76 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodWarsNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC$1.class new file mode 100644 index 000000000..b2d4a7121 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC$2.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC$2.class new file mode 100644 index 000000000..4ae747ce6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC.class new file mode 100644 index 000000000..793bc39b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsBossNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler$1.class new file mode 100644 index 000000000..6db4dbeee Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler$2.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler$2.class new file mode 100644 index 000000000..9805889d2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler.class new file mode 100644 index 000000000..41d0b216d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsEntranceHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$1.class new file mode 100644 index 000000000..319aef335 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$2.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$2.class new file mode 100644 index 000000000..45330b493 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$3.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$3.class new file mode 100644 index 000000000..827eea7cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$4$1.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$4$1.class new file mode 100644 index 000000000..7baa2b537 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$4$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$4.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$4.class new file mode 100644 index 000000000..256e5e290 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$GodWarsFaction.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$GodWarsFaction.class new file mode 100644 index 000000000..fbc201f8e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone$GodWarsFaction.class differ diff --git a/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone.class b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone.class new file mode 100644 index 000000000..26e0983de Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/gwd/GodwarsMapzone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/ChamberGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/magearena/ChamberGuardianDialogue.class new file mode 100644 index 000000000..95aaada74 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/ChamberGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionDialogue.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionDialogue.class new file mode 100644 index 000000000..0f45d9644 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$1.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$1.class new file mode 100644 index 000000000..27816e6d6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$KolodionType$1.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$KolodionType$1.class new file mode 100644 index 000000000..34dcf4b60 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$KolodionType$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$KolodionType.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$KolodionType.class new file mode 100644 index 000000000..78ed2a598 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC$KolodionType.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC.class new file mode 100644 index 000000000..79690e9aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionSession$1.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionSession$1.class new file mode 100644 index 000000000..c211b88f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionSession$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/KolodionSession.class b/CompiledServer/production/Server/plugin/activity/magearena/KolodionSession.class new file mode 100644 index 000000000..3fc28923d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/KolodionSession.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/LundailDialogue.class b/CompiledServer/production/Server/plugin/activity/magearena/LundailDialogue.class new file mode 100644 index 000000000..59d49e0cb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/LundailDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaNPC.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaNPC.class new file mode 100644 index 000000000..4bcab83b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$1.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$1.class new file mode 100644 index 000000000..17e0cb7e3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$2.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$2.class new file mode 100644 index 000000000..114370ed3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$3.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$3.class new file mode 100644 index 000000000..3f46f54ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$4.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$4.class new file mode 100644 index 000000000..17a8a88c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin.class new file mode 100644 index 000000000..82759c6a1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaZone$1.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaZone$1.class new file mode 100644 index 000000000..feda49ae3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/magearena/MageArenaZone.class b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaZone.class new file mode 100644 index 000000000..0e65561b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/magearena/MageArenaZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/AlchemyGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/AlchemyGuardianDialogue.class new file mode 100644 index 000000000..8055225fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/AlchemyGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/AlchemySpell.class b/CompiledServer/production/Server/plugin/activity/mta/AlchemySpell.class new file mode 100644 index 000000000..0c21e9dfa Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/AlchemySpell.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/BonesConvertingSpells.class b/CompiledServer/production/Server/plugin/activity/mta/BonesConvertingSpells.class new file mode 100644 index 000000000..0241fe1f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/BonesConvertingSpells.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/CharmedWarriorDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/CharmedWarriorDialogue.class new file mode 100644 index 000000000..1ed1a137f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/CharmedWarriorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/EnchantSpell.class b/CompiledServer/production/Server/plugin/activity/mta/EnchantSpell.class new file mode 100644 index 000000000..26588513b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/EnchantSpell.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/EnchantmentGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/EnchantmentGuardianDialogue.class new file mode 100644 index 000000000..66c94dbe5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/EnchantmentGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/EntranceGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/EntranceGuardianDialogue.class new file mode 100644 index 000000000..5690013a5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/EntranceGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/GraveyardGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/GraveyardGuardianDialogue.class new file mode 100644 index 000000000..07460aa1b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/GraveyardGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAShop$1.class b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$1.class new file mode 100644 index 000000000..da3f202f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAShop$2.class b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$2.class new file mode 100644 index 000000000..ded544a95 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAShop$3.class b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$3.class new file mode 100644 index 000000000..ef46ad40d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAShop$MTAShopPlugin.class b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$MTAShopPlugin.class new file mode 100644 index 000000000..af179d60c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAShop$MTAShopPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAShop.class b/CompiledServer/production/Server/plugin/activity/mta/MTAShop.class new file mode 100644 index 000000000..e50c9b830 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAShop.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAType$1.class b/CompiledServer/production/Server/plugin/activity/mta/MTAType$1.class new file mode 100644 index 000000000..aaa65648f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAType$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAType$2.class b/CompiledServer/production/Server/plugin/activity/mta/MTAType$2.class new file mode 100644 index 000000000..4d4905e2e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAType$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAType$3.class b/CompiledServer/production/Server/plugin/activity/mta/MTAType$3.class new file mode 100644 index 000000000..8622e3337 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAType$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAType$4.class b/CompiledServer/production/Server/plugin/activity/mta/MTAType$4.class new file mode 100644 index 000000000..8012d55cb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAType$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAType.class b/CompiledServer/production/Server/plugin/activity/mta/MTAType.class new file mode 100644 index 000000000..2cba5f6da Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAType.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MTAZone.class b/CompiledServer/production/Server/plugin/activity/mta/MTAZone.class new file mode 100644 index 000000000..f370ce37c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MTAZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MageTrainingArenaPlugin.class b/CompiledServer/production/Server/plugin/activity/mta/MageTrainingArenaPlugin.class new file mode 100644 index 000000000..a3510f7a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MageTrainingArenaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/MazeGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/MazeGuardianDialogue.class new file mode 100644 index 000000000..7b77716a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/MazeGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/ProgressHatDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/ProgressHatDialogue.class new file mode 100644 index 000000000..654b84720 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/ProgressHatDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/RewardsGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/RewardsGuardianDialogue.class new file mode 100644 index 000000000..db2192043 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/RewardsGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/TelekineticGrabSpell$1.class b/CompiledServer/production/Server/plugin/activity/mta/TelekineticGrabSpell$1.class new file mode 100644 index 000000000..04cd67638 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/TelekineticGrabSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/TelekineticGrabSpell.class b/CompiledServer/production/Server/plugin/activity/mta/TelekineticGrabSpell.class new file mode 100644 index 000000000..b015b4c71 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/TelekineticGrabSpell.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/TelekineticGuardianDialogue.class b/CompiledServer/production/Server/plugin/activity/mta/TelekineticGuardianDialogue.class new file mode 100644 index 000000000..19f8c3abe Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/TelekineticGuardianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$1.class b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$1.class new file mode 100644 index 000000000..ddbf68cc5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$AlchemistItem.class b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$AlchemistItem.class new file mode 100644 index 000000000..0fe3e2166 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$AlchemistItem.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$AlchemistSession.class b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$AlchemistSession.class new file mode 100644 index 000000000..9ebe6a64a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone$AlchemistSession.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone.class b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone.class new file mode 100644 index 000000000..568038303 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/AlchemistZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$1.class b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$1.class new file mode 100644 index 000000000..be8d9d683 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$2.class b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$2.class new file mode 100644 index 000000000..5fb1808ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$3.class b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$3.class new file mode 100644 index 000000000..b3fbf9f39 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$Shapes.class b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$Shapes.class new file mode 100644 index 000000000..74fe54a9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone$Shapes.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone.class b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone.class new file mode 100644 index 000000000..46d615387 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/EnchantingZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone$1.class b/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone$1.class new file mode 100644 index 000000000..ad1396253 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone$BoneType.class b/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone$BoneType.class new file mode 100644 index 000000000..ebf81ff31 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone$BoneType.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone.class b/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone.class new file mode 100644 index 000000000..d2918d206 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/GraveyardZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$1.class b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$1.class new file mode 100644 index 000000000..ce0787a67 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$2.class b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$2.class new file mode 100644 index 000000000..543a3631d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$3.class b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$3.class new file mode 100644 index 000000000..7a49b561b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$Maze.class b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$Maze.class new file mode 100644 index 000000000..9147edc0e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone$Maze.class differ diff --git a/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone.class b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone.class new file mode 100644 index 000000000..f66f39361 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/mta/impl/TelekineticZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$1.class b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$1.class new file mode 100644 index 000000000..2242f33c0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$2.class b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$2.class new file mode 100644 index 000000000..8b86a1fa9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$PartyBalloon$1.class b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$PartyBalloon$1.class new file mode 100644 index 000000000..4bc510514 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$PartyBalloon$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$PartyBalloon.class b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$PartyBalloon.class new file mode 100644 index 000000000..3e538f30d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager$PartyBalloon.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager.class b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager.class new file mode 100644 index 000000000..62ee9f983 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/BalloonManager.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$ChestCloseEvent.class b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$ChestCloseEvent.class new file mode 100644 index 000000000..2c261fbb3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$ChestCloseEvent.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$DepositContainer$PartyDepositListener.class b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$DepositContainer$PartyDepositListener.class new file mode 100644 index 000000000..e21b92c96 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$DepositContainer$PartyDepositListener.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$DepositContainer.class b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$DepositContainer.class new file mode 100644 index 000000000..390b7df95 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer$DepositContainer.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer.class b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer.class new file mode 100644 index 000000000..96fa1deee Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/ChestViewer.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$1.class b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$1.class new file mode 100644 index 000000000..e3ee972f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$2.class b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$2.class new file mode 100644 index 000000000..f8854f527 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler$1.class b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler$1.class new file mode 100644 index 000000000..3e85723d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler$2.class b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler$2.class new file mode 100644 index 000000000..15d265a42 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler.class b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler.class new file mode 100644 index 000000000..331a9e685 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin$DepositInterfaceHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin.class b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin.class new file mode 100644 index 000000000..ad6af07ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/partyroom/PartyRoomPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PCIslandZone.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCIslandZone.class new file mode 100644 index 000000000..a74bb26d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCIslandZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PCLanderZone.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCLanderZone.class new file mode 100644 index 000000000..996d34835 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCLanderZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PCObjectHandler.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCObjectHandler.class new file mode 100644 index 000000000..cbd99293a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCObjectHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PCPortalNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCPortalNPC.class new file mode 100644 index 000000000..2f18b159f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCPortalNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PCSquireNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCSquireNPC.class new file mode 100644 index 000000000..56c8c762a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PCSquireNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$1.class new file mode 100644 index 000000000..8020e61cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$2.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$2.class new file mode 100644 index 000000000..53f985358 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$3.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$3.class new file mode 100644 index 000000000..fdec3f767 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$BoatType.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$BoatType.class new file mode 100644 index 000000000..3b7537c01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin$BoatType.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin.class new file mode 100644 index 000000000..c989867d6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlActivityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlHelper$BoatInfo.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlHelper$BoatInfo.class new file mode 100644 index 000000000..5163438e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlHelper$BoatInfo.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlHelper.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlHelper.class new file mode 100644 index 000000000..47fe6d446 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlHelper.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlSession.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlSession.class new file mode 100644 index 000000000..7c28ba523 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlSession.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlSquire.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlSquire.class new file mode 100644 index 000000000..3607a5bc1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/PestControlSquire.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/VoidSealPlugin.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/VoidSealPlugin.class new file mode 100644 index 000000000..5ae20d8cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/VoidSealPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCDefilerNPC$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCDefilerNPC$1.class new file mode 100644 index 000000000..89bf1218b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCDefilerNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCDefilerNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCDefilerNPC.class new file mode 100644 index 000000000..774e732fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCDefilerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC$1.class new file mode 100644 index 000000000..c8b8c928c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC$2.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC$2.class new file mode 100644 index 000000000..44ebf905d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC.class new file mode 100644 index 000000000..47b8ad1d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCRavagerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC$1.class new file mode 100644 index 000000000..d39a28677 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC$2.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC$2.class new file mode 100644 index 000000000..5a9ea58f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC.class new file mode 100644 index 000000000..0c8f56b7b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCShifterNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC$1.class new file mode 100644 index 000000000..4888039eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC$2.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC$2.class new file mode 100644 index 000000000..a7fd3dcaf Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC.class new file mode 100644 index 000000000..b2ec6d7be Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSpinnerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSplatterNPC$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSplatterNPC$1.class new file mode 100644 index 000000000..68b54ebf2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSplatterNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSplatterNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSplatterNPC.class new file mode 100644 index 000000000..742d58cb7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCSplatterNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCTorcherNPC$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCTorcherNPC$1.class new file mode 100644 index 000000000..6083ae6a0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCTorcherNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCTorcherNPC.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCTorcherNPC.class new file mode 100644 index 000000000..d46e1d552 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/PCTorcherNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/TorcherSpell.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/TorcherSpell.class new file mode 100644 index 000000000..7038b9cf1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/monsters/TorcherSpell.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCIslandOptionPlugin.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCIslandOptionPlugin.class new file mode 100644 index 000000000..d971a43f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCIslandOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$1.class new file mode 100644 index 000000000..9acac9efc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$1.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$1.class new file mode 100644 index 000000000..152754f8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$10.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$10.class new file mode 100644 index 000000000..dc371e858 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$10.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$2.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$2.class new file mode 100644 index 000000000..1393c6e9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$3.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$3.class new file mode 100644 index 000000000..7b5415877 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$4.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$4.class new file mode 100644 index 000000000..eb6f3fd67 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$5.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$5.class new file mode 100644 index 000000000..7b7cd6b83 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$5.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$6.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$6.class new file mode 100644 index 000000000..ddf70e758 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$6.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$7.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$7.class new file mode 100644 index 000000000..ac40365d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$7.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$8.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$8.class new file mode 100644 index 000000000..95251d3f5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$8.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$9.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$9.class new file mode 100644 index 000000000..e989b68f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward$9.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward.class new file mode 100644 index 000000000..fc57685ca Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface$Reward.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface.class new file mode 100644 index 000000000..a7e44a610 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/PCRewardInterface.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/VoidKnightDialogue.class b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/VoidKnightDialogue.class new file mode 100644 index 000000000..56da425d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pestcontrol/reward/VoidKnightDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$1.class b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$1.class new file mode 100644 index 000000000..2ec5b8e82 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler$ElnockExchange$1.class b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler$ElnockExchange$1.class new file mode 100644 index 000000000..b239cc14a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler$ElnockExchange$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler$ElnockExchange.class b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler$ElnockExchange.class new file mode 100644 index 000000000..1569aa608 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler$ElnockExchange.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler.class b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler.class new file mode 100644 index 000000000..23bf0dbb0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue$ElnockExchangeInterfaceHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue.class b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue.class new file mode 100644 index 000000000..2ca22a3e1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/ElnockInquisitorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/FairyAerykaDialogue.class b/CompiledServer/production/Server/plugin/activity/puropuro/FairyAerykaDialogue.class new file mode 100644 index 000000000..2d9d5d78d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/FairyAerykaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/ImpDefenderNPC.class b/CompiledServer/production/Server/plugin/activity/puropuro/ImpDefenderNPC.class new file mode 100644 index 000000000..bc30b8ec4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/ImpDefenderNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$1.class b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$1.class new file mode 100644 index 000000000..88a3ef3a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$2.class b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$2.class new file mode 100644 index 000000000..047781a6b Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$PuroOptionHandler.class b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$PuroOptionHandler.class new file mode 100644 index 000000000..1aaeabe54 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$PuroOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$WheatSet.class b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$WheatSet.class new file mode 100644 index 000000000..bdc7caf82 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin$WheatSet.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin.class b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin.class new file mode 100644 index 000000000..dc3ab7d73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/PuroPuroPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/puropuro/WanderingImplingDialogue.class b/CompiledServer/production/Server/plugin/activity/puropuro/WanderingImplingDialogue.class new file mode 100644 index 000000000..2b29fc741 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/puropuro/WanderingImplingDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pyramidplunder/GuardMummyDialogue.class b/CompiledServer/production/Server/plugin/activity/pyramidplunder/GuardMummyDialogue.class new file mode 100644 index 000000000..4f64bf942 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pyramidplunder/GuardMummyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pyramidplunder/PyramidOptionHandler.class b/CompiledServer/production/Server/plugin/activity/pyramidplunder/PyramidOptionHandler.class new file mode 100644 index 000000000..7e5d4aa2d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pyramidplunder/PyramidOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/pyramidplunder/PyramidPlunderActivity.class b/CompiledServer/production/Server/plugin/activity/pyramidplunder/PyramidPlunderActivity.class new file mode 100644 index 000000000..720a99f36 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/pyramidplunder/PyramidPlunderActivity.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/BoxOfHealthDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/BoxOfHealthDialogue.class new file mode 100644 index 000000000..72925b8f8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/BoxOfHealthDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/CradleOfLifeDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/CradleOfLifeDialogue.class new file mode 100644 index 000000000..94c3ceef6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/CradleOfLifeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/GiftOfPeaceDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/GiftOfPeaceDialogue.class new file mode 100644 index 000000000..d014a9430 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/GiftOfPeaceDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/GrainOfPlentyDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/GrainOfPlentyDialogue.class new file mode 100644 index 000000000..2baa1d051 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/GrainOfPlentyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$1.class b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$1.class new file mode 100644 index 000000000..66d6b9c08 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$2.class b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$2.class new file mode 100644 index 000000000..da1e350b8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$ExplorerDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$ExplorerDialogue.class new file mode 100644 index 000000000..aacf0082a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$ExplorerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$StrongholdComponentPlugin.class b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$StrongholdComponentPlugin.class new file mode 100644 index 000000000..32e5191be Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$StrongholdComponentPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$StrongholdDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$StrongholdDialogue.class new file mode 100644 index 000000000..7a1fa5e7a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin$StrongholdDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin.class b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin.class new file mode 100644 index 000000000..1cb3c069e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/StrongHoldSecurityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/GuardDialoguePlugin$1.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/GuardDialoguePlugin$1.class new file mode 100644 index 000000000..17f552dbd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/GuardDialoguePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/GuardDialoguePlugin.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/GuardDialoguePlugin.class new file mode 100644 index 000000000..171d69df7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/GuardDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PSOptionHandler$1.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PSOptionHandler$1.class new file mode 100644 index 000000000..180e90fb2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PSOptionHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PSOptionHandler.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PSOptionHandler.class new file mode 100644 index 000000000..fbf328cf3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PSOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$1.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$1.class new file mode 100644 index 000000000..0c582a10f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$1.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$1.class new file mode 100644 index 000000000..c52ca8c13 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$2.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$2.class new file mode 100644 index 000000000..bc54820d1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$3.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$3.class new file mode 100644 index 000000000..d58574386 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$4.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$4.class new file mode 100644 index 000000000..af22c3e4e Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$4.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$5.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$5.class new file mode 100644 index 000000000..436042efd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$5.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$6.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$6.class new file mode 100644 index 000000000..36b6e41e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$6.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$7.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$7.class new file mode 100644 index 000000000..6fae2fce0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions$7.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions.class new file mode 100644 index 000000000..5aef4cff5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest$TestQuestions.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest.class new file mode 100644 index 000000000..799a3bed7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/PlayerSafetyTest.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/ProfessorHenryDialogue.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/ProfessorHenryDialogue.class new file mode 100644 index 000000000..49ffab212 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/ProfessorHenryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/SafetyMapZone.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/SafetyMapZone.class new file mode 100644 index 000000000..575440396 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/SafetyMapZone.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques$1.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques$1.class new file mode 100644 index 000000000..3f6205661 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques$2.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques$2.class new file mode 100644 index 000000000..3f1ec2146 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques.class new file mode 100644 index 000000000..fdafb9981 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin$JailPlaques.class differ diff --git a/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin.class b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin.class new file mode 100644 index 000000000..19cf77279 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/stronghold/playersafety/StrongHoldOfPlayerSafetyPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$1.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$1.class new file mode 100644 index 000000000..8a1d1f7fb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$2.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$2.class new file mode 100644 index 000000000..4dd027dec Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$CombatAction.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$CombatAction.class new file mode 100644 index 000000000..9cf684bb9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC$CombatAction.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC.class new file mode 100644 index 000000000..f1f423153 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCaveNPC.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$1.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$1.class new file mode 100644 index 000000000..d077a8986 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$2.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$2.class new file mode 100644 index 000000000..8a3595e57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$3.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$3.class new file mode 100644 index 000000000..a8175a572 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin.class new file mode 100644 index 000000000..7297d151a Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightCavesPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin$1.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin$1.class new file mode 100644 index 000000000..39d09364d Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin$2.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin$2.class new file mode 100644 index 000000000..3f086d1af Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin.class b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin.class new file mode 100644 index 000000000..8ca3a6e74 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/tzhaar/TzhaarFightPitsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/WarriorsGuild$ClaimTokenDialogue.class b/CompiledServer/production/Server/plugin/activity/wguild/WarriorsGuild$ClaimTokenDialogue.class new file mode 100644 index 000000000..2aeef40cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/WarriorsGuild$ClaimTokenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/WarriorsGuild.class b/CompiledServer/production/Server/plugin/activity/wguild/WarriorsGuild.class new file mode 100644 index 000000000..26f5d9721 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/WarriorsGuild.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimatedArmour.class b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimatedArmour.class new file mode 100644 index 000000000..ad0a8b3ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimatedArmour.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$1.class b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$1.class new file mode 100644 index 000000000..e79507964 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$2.class b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$2.class new file mode 100644 index 000000000..9e54a1e27 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$ArmourSet.class b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$ArmourSet.class new file mode 100644 index 000000000..183bd6baf Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom$ArmourSet.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom.class b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom.class new file mode 100644 index 000000000..795b23518 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/animator/AnimationRoom.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$1.class b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$1.class new file mode 100644 index 000000000..08e05f56c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$2$1.class b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$2$1.class new file mode 100644 index 000000000..907085dd4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$2.class b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$2.class new file mode 100644 index 000000000..ead9f0eaa Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom.class b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom.class new file mode 100644 index 000000000..a7978ae3f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/barrel/BarrelRoom.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$1$1.class b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$1$1.class new file mode 100644 index 000000000..be067606c Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$1.class b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$1.class new file mode 100644 index 000000000..47bb0cacc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$2.class b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$2.class new file mode 100644 index 000000000..65efc6590 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$3.class b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$3.class new file mode 100644 index 000000000..dfc938fc5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$3.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$CatapultAttack.class b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$CatapultAttack.class new file mode 100644 index 000000000..7874755d9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom$CatapultAttack.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom.class b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom.class new file mode 100644 index 000000000..02ad231cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/catapult/CatapultRoom.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$1.class b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$1.class new file mode 100644 index 000000000..3054c9adb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$2.class b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$2.class new file mode 100644 index 000000000..5b90965eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$KamfreenaDial.class b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$KamfreenaDial.class new file mode 100644 index 000000000..2b07466a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom$KamfreenaDial.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom.class b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom.class new file mode 100644 index 000000000..dfda561cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/cyclopes/CyclopesRoom.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom$1.class b/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom$1.class new file mode 100644 index 000000000..0250996c1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom$Dummy.class b/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom$Dummy.class new file mode 100644 index 000000000..1e21f283f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom$Dummy.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom.class b/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom.class new file mode 100644 index 000000000..0d5dfda7f Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/dummy/DummyRoom.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$1$1.class b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$1$1.class new file mode 100644 index 000000000..25ffb48fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$1.class b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$1.class new file mode 100644 index 000000000..ad15b64cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$1.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$2.class b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$2.class new file mode 100644 index 000000000..126bdf0fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom$2.class differ diff --git a/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom.class b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom.class new file mode 100644 index 000000000..3a00091b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/activity/wguild/shot/ShotPutRoom.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/AncientMaceSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/AncientMaceSpecialHandler.class new file mode 100644 index 000000000..595edb514 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/AncientMaceSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ArmadylCrossbowSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ArmadylCrossbowSpecialHandler.class new file mode 100644 index 000000000..c06b3e34d Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ArmadylCrossbowSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/BackstabSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/BackstabSpecialHandler.class new file mode 100644 index 000000000..47d2ccbeb Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/BackstabSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$1.class b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$1.class new file mode 100644 index 000000000..58a671cdc Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$2.class b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$2.class new file mode 100644 index 000000000..7bf33e9c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$3.class b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$3.class new file mode 100644 index 000000000..4b40b2c53 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler$3.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler.class new file mode 100644 index 000000000..e5c35c27d Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ChainhitSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/CleaveSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/CleaveSpecialHandler.class new file mode 100644 index 000000000..4af0f5791 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/CleaveSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ClobberSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ClobberSpecialHandler.class new file mode 100644 index 000000000..5a14c33eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ClobberSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/DescentOfDarknessSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/DescentOfDarknessSpecialHandler.class new file mode 100644 index 000000000..656a490d1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/DescentOfDarknessSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/DragonPickaxeSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/DragonPickaxeSpecialHandler.class new file mode 100644 index 000000000..2b7029238 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/DragonPickaxeSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/EnergyDrainSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/EnergyDrainSpecialHandler.class new file mode 100644 index 000000000..ee41dd12f Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/EnergyDrainSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ExcaliburSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ExcaliburSpecialHandler.class new file mode 100644 index 000000000..8b9c3e1f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ExcaliburSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/FeintSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/FeintSpecialHandler.class new file mode 100644 index 000000000..48033e0dd Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/FeintSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/HealingBladeSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/HealingBladeSpecialHandler.class new file mode 100644 index 000000000..404ebe835 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/HealingBladeSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/IceCleaveSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/IceCleaveSpecialHandler.class new file mode 100644 index 000000000..26ff5426e Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/IceCleaveSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ImpaleSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ImpaleSpecialHandler.class new file mode 100644 index 000000000..8f9a6cc80 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ImpaleSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/JudgementSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/JudgementSpecialHandler.class new file mode 100644 index 000000000..ac1d7a45d Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/JudgementSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/PowershotSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/PowershotSpecialHandler.class new file mode 100644 index 000000000..d214388f5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/PowershotSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/PowerstabSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/PowerstabSpecialHandler.class new file mode 100644 index 000000000..926fc6330 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/PowerstabSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/PunctureSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/PunctureSpecialHandler.class new file mode 100644 index 000000000..2d23c43b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/PunctureSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/QuickSmashSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/QuickSmashSpecialHandler.class new file mode 100644 index 000000000..220847a91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/QuickSmashSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/RampageSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/RampageSpecialHandler.class new file mode 100644 index 000000000..a1965dbda Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/RampageSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SaradominsLightningHandler.class b/CompiledServer/production/Server/plugin/combat/special/SaradominsLightningHandler.class new file mode 100644 index 000000000..26a4cee79 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SaradominsLightningHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SeercullSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SeercullSpecialHandler.class new file mode 100644 index 000000000..f49eeba71 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SeercullSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SeverSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SeverSpecialHandler.class new file mode 100644 index 000000000..c04b1e760 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SeverSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ShatterSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ShatterSpecialHandler.class new file mode 100644 index 000000000..a6e15d141 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ShatterSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/ShoveSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/ShoveSpecialHandler.class new file mode 100644 index 000000000..bab7cb198 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/ShoveSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SliceAndDiceSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SliceAndDiceSpecialHandler.class new file mode 100644 index 000000000..951d6311f Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SliceAndDiceSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SmashSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SmashSpecialHandler.class new file mode 100644 index 000000000..fbe277fcf Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SmashSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SnapshotSpecialHandler$1.class b/CompiledServer/production/Server/plugin/combat/special/SnapshotSpecialHandler$1.class new file mode 100644 index 000000000..98f9508f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SnapshotSpecialHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SnapshotSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SnapshotSpecialHandler.class new file mode 100644 index 000000000..54f73b758 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SnapshotSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SnipeSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SnipeSpecialHandler.class new file mode 100644 index 000000000..7fd76dc35 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SnipeSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SpearWallSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SpearWallSpecialHandler.class new file mode 100644 index 000000000..e4b6c4934 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SpearWallSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/StaffOfTheDeadSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/StaffOfTheDeadSpecialHandler.class new file mode 100644 index 000000000..a350f52b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/StaffOfTheDeadSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/SweepSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/SweepSpecialHandler.class new file mode 100644 index 000000000..357507105 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/SweepSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/special/WarstrikeSpecialHandler.class b/CompiledServer/production/Server/plugin/combat/special/WarstrikeSpecialHandler.class new file mode 100644 index 000000000..4e511dd5e Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/special/WarstrikeSpecialHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/AirSpell.class b/CompiledServer/production/Server/plugin/combat/spell/AirSpell.class new file mode 100644 index 000000000..a31d24ab7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/AirSpell.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/BindSpell.class b/CompiledServer/production/Server/plugin/combat/spell/BindSpell.class new file mode 100644 index 000000000..d262836f8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/BindSpell.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/BloodSpells.class b/CompiledServer/production/Server/plugin/combat/spell/BloodSpells.class new file mode 100644 index 000000000..d680ac8a8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/BloodSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/CrumbleUndead.class b/CompiledServer/production/Server/plugin/combat/spell/CrumbleUndead.class new file mode 100644 index 000000000..2fb2703c7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/CrumbleUndead.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/CurseSpells$1.class b/CompiledServer/production/Server/plugin/combat/spell/CurseSpells$1.class new file mode 100644 index 000000000..62cdc7708 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/CurseSpells$1.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/CurseSpells.class b/CompiledServer/production/Server/plugin/combat/spell/CurseSpells.class new file mode 100644 index 000000000..88b05ae10 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/CurseSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/EarthSpell.class b/CompiledServer/production/Server/plugin/combat/spell/EarthSpell.class new file mode 100644 index 000000000..421655b4a Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/EarthSpell.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/FireSpell.class b/CompiledServer/production/Server/plugin/combat/spell/FireSpell.class new file mode 100644 index 000000000..a72159723 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/FireSpell.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/GodSpells.class b/CompiledServer/production/Server/plugin/combat/spell/GodSpells.class new file mode 100644 index 000000000..a2a3f1654 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/GodSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/IbanBlast.class b/CompiledServer/production/Server/plugin/combat/spell/IbanBlast.class new file mode 100644 index 000000000..5542b2039 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/IbanBlast.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/IceSpells.class b/CompiledServer/production/Server/plugin/combat/spell/IceSpells.class new file mode 100644 index 000000000..bb110e6c5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/IceSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/MagicDart.class b/CompiledServer/production/Server/plugin/combat/spell/MagicDart.class new file mode 100644 index 000000000..0c94f91a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/MagicDart.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/MiasmicSpells.class b/CompiledServer/production/Server/plugin/combat/spell/MiasmicSpells.class new file mode 100644 index 000000000..bb7f48cae Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/MiasmicSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/ShadowSpells.class b/CompiledServer/production/Server/plugin/combat/spell/ShadowSpells.class new file mode 100644 index 000000000..5cdc401a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/ShadowSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/SmokeSpells.class b/CompiledServer/production/Server/plugin/combat/spell/SmokeSpells.class new file mode 100644 index 000000000..d1239fb9d Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/SmokeSpells.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/SonicWaveSpell.class b/CompiledServer/production/Server/plugin/combat/spell/SonicWaveSpell.class new file mode 100644 index 000000000..6f5c3454c Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/SonicWaveSpell.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasHandler.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasHandler.class new file mode 100644 index 000000000..2d0d516c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasOptionHandler$1.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasOptionHandler$1.class new file mode 100644 index 000000000..f9046fe08 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasOptionHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasOptionHandler.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasOptionHandler.class new file mode 100644 index 000000000..7b50c9912 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas$TridentOfSeasOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas.class new file mode 100644 index 000000000..70bb47353 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSeas.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampHandler.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampHandler.class new file mode 100644 index 000000000..2d6019e9d Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampOptionHandler$1.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampOptionHandler$1.class new file mode 100644 index 000000000..ee9c86119 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampOptionHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampOptionHandler.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampOptionHandler.class new file mode 100644 index 000000000..11b888f12 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp$TridentOfSwampOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp.class b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp.class new file mode 100644 index 000000000..e522caad0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/TridentOfSwamp.class differ diff --git a/CompiledServer/production/Server/plugin/combat/spell/WaterSpell.class b/CompiledServer/production/Server/plugin/combat/spell/WaterSpell.class new file mode 100644 index 000000000..e360e146e Binary files /dev/null and b/CompiledServer/production/Server/plugin/combat/spell/WaterSpell.class differ diff --git a/CompiledServer/production/Server/plugin/command/AIPCommandPlugin$1.class b/CompiledServer/production/Server/plugin/command/AIPCommandPlugin$1.class new file mode 100644 index 000000000..1eed06c3a Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/AIPCommandPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/command/AIPCommandPlugin.class b/CompiledServer/production/Server/plugin/command/AIPCommandPlugin.class new file mode 100644 index 000000000..5692cc527 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/AIPCommandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/command/BetaCommandPlugin.class b/CompiledServer/production/Server/plugin/command/BetaCommandPlugin.class new file mode 100644 index 000000000..b333bdf73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/BetaCommandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$1.class b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$1.class new file mode 100644 index 000000000..907a668c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$2.class b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$2.class new file mode 100644 index 000000000..d01dcbb5d Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$SpawnSearch.class b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$SpawnSearch.class new file mode 100644 index 000000000..0af4b91da Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin$SpawnSearch.class differ diff --git a/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin.class b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin.class new file mode 100644 index 000000000..8d041b486 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/DeveloperCommandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/command/ModeratorCommand.class b/CompiledServer/production/Server/plugin/command/ModeratorCommand.class new file mode 100644 index 000000000..0caf950d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/ModeratorCommand.class differ diff --git a/CompiledServer/production/Server/plugin/command/PerkCommandPlugin.class b/CompiledServer/production/Server/plugin/command/PerkCommandPlugin.class new file mode 100644 index 000000000..7779a6685 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/PerkCommandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin$1.class b/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin$1.class new file mode 100644 index 000000000..bcda1949e Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin$2.class b/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin$2.class new file mode 100644 index 000000000..41cf960cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin.class b/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin.class new file mode 100644 index 000000000..b8dbabf8f Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/PlayerCommandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/command/SystemCommand.class b/CompiledServer/production/Server/plugin/command/SystemCommand.class new file mode 100644 index 000000000..7bac84ec1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/SystemCommand.class differ diff --git a/CompiledServer/production/Server/plugin/command/TeleportCommand.class b/CompiledServer/production/Server/plugin/command/TeleportCommand.class new file mode 100644 index 000000000..221fd3307 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/TeleportCommand.class differ diff --git a/CompiledServer/production/Server/plugin/command/VisualCommand$1.class b/CompiledServer/production/Server/plugin/command/VisualCommand$1.class new file mode 100644 index 000000000..3fc6568fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/VisualCommand$1.class differ diff --git a/CompiledServer/production/Server/plugin/command/VisualCommand$2.class b/CompiledServer/production/Server/plugin/command/VisualCommand$2.class new file mode 100644 index 000000000..13f2b0916 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/VisualCommand$2.class differ diff --git a/CompiledServer/production/Server/plugin/command/VisualCommand$3.class b/CompiledServer/production/Server/plugin/command/VisualCommand$3.class new file mode 100644 index 000000000..8efacbfbf Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/VisualCommand$3.class differ diff --git a/CompiledServer/production/Server/plugin/command/VisualCommand$4.class b/CompiledServer/production/Server/plugin/command/VisualCommand$4.class new file mode 100644 index 000000000..68f24354e Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/VisualCommand$4.class differ diff --git a/CompiledServer/production/Server/plugin/command/VisualCommand.class b/CompiledServer/production/Server/plugin/command/VisualCommand.class new file mode 100644 index 000000000..ba60c3388 Binary files /dev/null and b/CompiledServer/production/Server/plugin/command/VisualCommand.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$1.class b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$1.class new file mode 100644 index 000000000..a47703c1e Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$2.class b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$2.class new file mode 100644 index 000000000..4d451bf61 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$3.class b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$3.class new file mode 100644 index 000000000..ccabb7e5c Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$4.class b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$4.class new file mode 100644 index 000000000..324ddb578 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin$4.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin.class b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin.class new file mode 100644 index 000000000..27b57f9b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/BeerDrinkPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/CupofTeaPlugin.class b/CompiledServer/production/Server/plugin/consumable/CupofTeaPlugin.class new file mode 100644 index 000000000..87060dc60 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/CupofTeaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$AntifirePotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$AntifirePotion.class new file mode 100644 index 000000000..78100786e Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$AntifirePotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$AntipoisonPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$AntipoisonPotion.class new file mode 100644 index 000000000..217d905d1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$AntipoisonPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$CombatPotion$1.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$CombatPotion$1.class new file mode 100644 index 000000000..eb1e74302 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$CombatPotion$1.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$CombatPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$CombatPotion.class new file mode 100644 index 000000000..0c0b371eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$CombatPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$EnergyPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$EnergyPotion.class new file mode 100644 index 000000000..92b219b4e Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$EnergyPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$FishingPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$FishingPotion.class new file mode 100644 index 000000000..0f6d7459d Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$FishingPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$PrayerPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$PrayerPotion.class new file mode 100644 index 000000000..cd372681e Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$PrayerPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$RelicymsBalm.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$RelicymsBalm.class new file mode 100644 index 000000000..54a82e4d6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$RelicymsBalm.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$RestorePotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$RestorePotion.class new file mode 100644 index 000000000..3271440c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$RestorePotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SaradominBrew.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SaradominBrew.class new file mode 100644 index 000000000..795dbb66c Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SaradominBrew.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SummoningPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SummoningPotion.class new file mode 100644 index 000000000..462468cb4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SummoningPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperCombatPotionPlugin.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperCombatPotionPlugin.class new file mode 100644 index 000000000..000897e0c Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperCombatPotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperOSRSPotionPlugin.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperOSRSPotionPlugin.class new file mode 100644 index 000000000..24f6134e1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperOSRSPotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperantiPoison.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperantiPoison.class new file mode 100644 index 000000000..9f1895100 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperantiPoison.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperenergyPotion.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperenergyPotion.class new file mode 100644 index 000000000..db73aaf57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperenergyPotion.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperestorePlugin.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperestorePlugin.class new file mode 100644 index 000000000..d78340ff6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$SuperestorePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin$ZamorakBrew.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$ZamorakBrew.class new file mode 100644 index 000000000..52f4736b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin$ZamorakBrew.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/PotionPlugin.class b/CompiledServer/production/Server/plugin/consumable/PotionPlugin.class new file mode 100644 index 000000000..23078f627 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/PotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/BowlFoodPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/BowlFoodPlugin.class new file mode 100644 index 000000000..bf84dd6a1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/BowlFoodPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/BreadPlugin$BreadProperties.class b/CompiledServer/production/Server/plugin/consumable/food/BreadPlugin$BreadProperties.class new file mode 100644 index 000000000..bdd7e55d7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/BreadPlugin$BreadProperties.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/BreadPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/BreadPlugin.class new file mode 100644 index 000000000..548ad4172 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/BreadPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/CakePlugin$CakeProperties.class b/CompiledServer/production/Server/plugin/consumable/food/CakePlugin$CakeProperties.class new file mode 100644 index 000000000..635410338 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/CakePlugin$CakeProperties.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/CakePlugin.class b/CompiledServer/production/Server/plugin/consumable/food/CakePlugin.class new file mode 100644 index 000000000..2dc1a19e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/CakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/DraynorCabbagePlugin.class b/CompiledServer/production/Server/plugin/consumable/food/DraynorCabbagePlugin.class new file mode 100644 index 000000000..546476466 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/DraynorCabbagePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/KebabFoodPlugin$1.class b/CompiledServer/production/Server/plugin/consumable/food/KebabFoodPlugin$1.class new file mode 100644 index 000000000..e5ce8c053 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/KebabFoodPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/KebabFoodPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/KebabFoodPlugin.class new file mode 100644 index 000000000..41b27f9ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/KebabFoodPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/MeatPlugin$MeatProperty.class b/CompiledServer/production/Server/plugin/consumable/food/MeatPlugin$MeatProperty.class new file mode 100644 index 000000000..591825473 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/MeatPlugin$MeatProperty.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/MeatPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/MeatPlugin.class new file mode 100644 index 000000000..918052346 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/MeatPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$AdmiralPie.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$AdmiralPie.class new file mode 100644 index 000000000..1d15cd84a Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$AdmiralPie.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$FishPie.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$FishPie.class new file mode 100644 index 000000000..12dc4037e Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$FishPie.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$GardenPie.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$GardenPie.class new file mode 100644 index 000000000..e25e9d061 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$GardenPie.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$PieProperty.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$PieProperty.class new file mode 100644 index 000000000..af885f0dd Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$PieProperty.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$SummerPie.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$SummerPie.class new file mode 100644 index 000000000..e7863e590 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$SummerPie.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$WildPie.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$WildPie.class new file mode 100644 index 000000000..2e832bab3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin$WildPie.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PiePlugin.class b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin.class new file mode 100644 index 000000000..654437237 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PiePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PizzaPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/PizzaPlugin.class new file mode 100644 index 000000000..10854581a Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PizzaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/PurpleSweetsPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/PurpleSweetsPlugin.class new file mode 100644 index 000000000..749db7acb Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/PurpleSweetsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/RockCakePlugin.class b/CompiledServer/production/Server/plugin/consumable/food/RockCakePlugin.class new file mode 100644 index 000000000..8f4b0d874 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/RockCakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/ShrimpsPlugin$ShrimpProperties.class b/CompiledServer/production/Server/plugin/consumable/food/ShrimpsPlugin$ShrimpProperties.class new file mode 100644 index 000000000..3a68e1bb1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/ShrimpsPlugin$ShrimpProperties.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/ShrimpsPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/ShrimpsPlugin.class new file mode 100644 index 000000000..1290b4e12 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/ShrimpsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/SkeweredFood$SkeweredProperty.class b/CompiledServer/production/Server/plugin/consumable/food/SkeweredFood$SkeweredProperty.class new file mode 100644 index 000000000..27435ea34 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/SkeweredFood$SkeweredProperty.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/SkeweredFood.class b/CompiledServer/production/Server/plugin/consumable/food/SkeweredFood.class new file mode 100644 index 000000000..4bae4c164 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/SkeweredFood.class differ diff --git a/CompiledServer/production/Server/plugin/consumable/food/WatermelonPlugin.class b/CompiledServer/production/Server/plugin/consumable/food/WatermelonPlugin.class new file mode 100644 index 000000000..70f69ce75 Binary files /dev/null and b/CompiledServer/production/Server/plugin/consumable/food/WatermelonPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$1.class b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$1.class new file mode 100644 index 000000000..112880140 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$BluePhatItem.class b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$BluePhatItem.class new file mode 100644 index 000000000..8549e2ef1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$BluePhatItem.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$DBRecordingNPC.class b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$DBRecordingNPC.class new file mode 100644 index 000000000..e4a9ab5bf Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$DBRecordingNPC.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$RecordingPulse.class b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$RecordingPulse.class new file mode 100644 index 000000000..3c6e2fe15 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin$RecordingPulse.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin.class b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin.class new file mode 100644 index 000000000..0ede1137f Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/DBRCutscenePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$BrugsenBursenDialogue$1.class b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$BrugsenBursenDialogue$1.class new file mode 100644 index 000000000..c0f914d9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$BrugsenBursenDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$BrugsenBursenDialogue.class b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$BrugsenBursenDialogue.class new file mode 100644 index 000000000..ae275fa75 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$BrugsenBursenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$TutorialInterfacePlugin.class b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$TutorialInterfacePlugin.class new file mode 100644 index 000000000..f7c3091a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin$TutorialInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin.class b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin.class new file mode 100644 index 000000000..374e8834b Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/GECutscenePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/JulietCutscenePlugin.class b/CompiledServer/production/Server/plugin/cutscene/JulietCutscenePlugin.class new file mode 100644 index 000000000..3b2bbdba7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/JulietCutscenePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/JulietDialogue$1.class b/CompiledServer/production/Server/plugin/cutscene/JulietDialogue$1.class new file mode 100644 index 000000000..4f03fc950 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/JulietDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/JulietDialogue$2.class b/CompiledServer/production/Server/plugin/cutscene/JulietDialogue$2.class new file mode 100644 index 000000000..dc9e4df8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/JulietDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/JulietDialogue.class b/CompiledServer/production/Server/plugin/cutscene/JulietDialogue.class new file mode 100644 index 000000000..f77e87c34 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/JulietDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/OrganCutScene$1.class b/CompiledServer/production/Server/plugin/cutscene/OrganCutScene$1.class new file mode 100644 index 000000000..fec25126c Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/OrganCutScene$1.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/OrganCutScene$2.class b/CompiledServer/production/Server/plugin/cutscene/OrganCutScene$2.class new file mode 100644 index 000000000..a18553d08 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/OrganCutScene$2.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/OrganCutScene.class b/CompiledServer/production/Server/plugin/cutscene/OrganCutScene.class new file mode 100644 index 000000000..5aa5c1289 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/OrganCutScene.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue$1.class b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue$1.class new file mode 100644 index 000000000..e786958bc Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue$2.class b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue$2.class new file mode 100644 index 000000000..e4eb98d87 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue.class b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue.class new file mode 100644 index 000000000..8c39de138 Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin$RomeoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin.class b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin.class new file mode 100644 index 000000000..3628d668b Binary files /dev/null and b/CompiledServer/production/Server/plugin/cutscene/RJCutscenePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AablaDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/AablaDialogue$1.class new file mode 100644 index 000000000..e24ff2fe0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AablaDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AablaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AablaDialogue.class new file mode 100644 index 000000000..f04c5a891 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AablaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AbbotLangleyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AbbotLangleyDialogue.class new file mode 100644 index 000000000..f4d7f8125 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AbbotLangleyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ActivateEnchantedGem.class b/CompiledServer/production/Server/plugin/dialogue/ActivateEnchantedGem.class new file mode 100644 index 000000000..8e34d780f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ActivateEnchantedGem.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AeonisigRaispher.class b/CompiledServer/production/Server/plugin/dialogue/AeonisigRaispher.class new file mode 100644 index 000000000..146d5f01b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AeonisigRaispher.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AggieDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AggieDialogue.class new file mode 100644 index 000000000..c6d0259f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AggieDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AhabDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AhabDialogue.class new file mode 100644 index 000000000..e5892b6f8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AhabDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AjjatDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/AjjatDialoguePlugin.class new file mode 100644 index 000000000..c415852ce Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AjjatDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AlKharidShopKeeperDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AlKharidShopKeeperDialogue.class new file mode 100644 index 000000000..63215d72a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AlKharidShopKeeperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AlTheCamelDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AlTheCamelDialogue.class new file mode 100644 index 000000000..c51f451e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AlTheCamelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AleckDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AleckDialogue.class new file mode 100644 index 000000000..5193dc67e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AleckDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AlfonseWaiterDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AlfonseWaiterDialogue.class new file mode 100644 index 000000000..07f9f02f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AlfonseWaiterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AliMorrisaneDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AliMorrisaneDialogue.class new file mode 100644 index 000000000..7eb510c87 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AliMorrisaneDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AliTheLeafletDropper.class b/CompiledServer/production/Server/plugin/dialogue/AliTheLeafletDropper.class new file mode 100644 index 000000000..42f08fffb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AliTheLeafletDropper.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AmbassadorFernook.class b/CompiledServer/production/Server/plugin/dialogue/AmbassadorFernook.class new file mode 100644 index 000000000..aeb93145a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AmbassadorFernook.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AntonDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AntonDialogue.class new file mode 100644 index 000000000..b37e11448 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AntonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ApothecaryDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ApothecaryDialogue.class new file mode 100644 index 000000000..cd779513b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ApothecaryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ArchaeologicalExpertDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ArchaeologicalExpertDialogue.class new file mode 100644 index 000000000..adfdb65b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ArchaeologicalExpertDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ArdougneShopKeeperPlugin.class b/CompiledServer/production/Server/plugin/dialogue/ArdougneShopKeeperPlugin.class new file mode 100644 index 000000000..ebd729581 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ArdougneShopKeeperPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/AustriDialogue.class b/CompiledServer/production/Server/plugin/dialogue/AustriDialogue.class new file mode 100644 index 000000000..59ecaf3b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/AustriDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BKListenDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BKListenDialogue.class new file mode 100644 index 000000000..7dcc40d30 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BKListenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BananaCrateDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BananaCrateDialogue.class new file mode 100644 index 000000000..152d556c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BananaCrateDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BanditCampBartenderDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BanditCampBartenderDialogue.class new file mode 100644 index 000000000..526a20d05 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BanditCampBartenderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BankerTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BankerTutorDialogue.class new file mode 100644 index 000000000..ee770f7e0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BankerTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BaraekDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BaraekDialogue.class new file mode 100644 index 000000000..fb0d730ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BaraekDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BarbarianDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BarbarianDialogue.class new file mode 100644 index 000000000..9b7e1120f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BarbarianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BarfyBill.class b/CompiledServer/production/Server/plugin/dialogue/BarfyBill.class new file mode 100644 index 000000000..12ee44675 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BarfyBill.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BarkerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BarkerDialogue.class new file mode 100644 index 000000000..bdafc7496 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BarkerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BeaverDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BeaverDialogue.class new file mode 100644 index 000000000..954b08530 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BeaverDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BennyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BennyDialogue.class new file mode 100644 index 000000000..e08adc615 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BennyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BernaldDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BernaldDialogue.class new file mode 100644 index 000000000..d0624e2f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BernaldDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BettyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BettyDialogue.class new file mode 100644 index 000000000..149cd6f38 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BettyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BigDaveDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BigDaveDialogue.class new file mode 100644 index 000000000..7d279ef91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BigDaveDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BillTeachDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BillTeachDialogue.class new file mode 100644 index 000000000..1a8bd2611 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BillTeachDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BobBarterDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BobBarterDialogue.class new file mode 100644 index 000000000..37b5609fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BobBarterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BonzoDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BonzoDialogue.class new file mode 100644 index 000000000..32c647e06 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BonzoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BootDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BootDialogue.class new file mode 100644 index 000000000..682031c1a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BootDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BorderGuardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BorderGuardDialogue.class new file mode 100644 index 000000000..20587a035 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BorderGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BreocaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BreocaDialogue.class new file mode 100644 index 000000000..def090b1c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BreocaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BrianArcheryDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BrianArcheryDialogue.class new file mode 100644 index 000000000..050f2315e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BrianArcheryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BrianORichardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BrianORichardDialogue.class new file mode 100644 index 000000000..95efd729e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BrianORichardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BrimhavenBartenderDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BrimhavenBartenderDialogue.class new file mode 100644 index 000000000..acdf97c06 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BrimhavenBartenderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BrimhavenPirateDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BrimhavenPirateDialogue.class new file mode 100644 index 000000000..bdc702233 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BrimhavenPirateDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BrosDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BrosDialogue.class new file mode 100644 index 000000000..3ff29115b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BrosDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BrotherJeredDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BrotherJeredDialogue.class new file mode 100644 index 000000000..342e8252f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BrotherJeredDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/BurthorpeSoldierDialogue.class b/CompiledServer/production/Server/plugin/dialogue/BurthorpeSoldierDialogue.class new file mode 100644 index 000000000..f28e1a2d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/BurthorpeSoldierDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CabinBoyJenkins.class b/CompiledServer/production/Server/plugin/dialogue/CabinBoyJenkins.class new file mode 100644 index 000000000..fe6fa221d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CabinBoyJenkins.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CallistoCubDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CallistoCubDialogue.class new file mode 100644 index 000000000..292fe12cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CallistoCubDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CamelDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/CamelDialoguePlugin.class new file mode 100644 index 000000000..7dd4890da Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CamelDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CamelotGuardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CamelotGuardDialogue.class new file mode 100644 index 000000000..8cffc62b0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CamelotGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CandleSellerPlugin.class b/CompiledServer/production/Server/plugin/dialogue/CandleSellerPlugin.class new file mode 100644 index 000000000..08ab46b2c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CandleSellerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CapeMerchantDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CapeMerchantDialogue.class new file mode 100644 index 000000000..a8d3113d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CapeMerchantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CapnIzzyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CapnIzzyDialogue.class new file mode 100644 index 000000000..ece3c9ceb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CapnIzzyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CaptainBarnabyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CaptainBarnabyDialogue.class new file mode 100644 index 000000000..3fac6833b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CaptainBarnabyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CaptainBentleyDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/CaptainBentleyDialogue$1.class new file mode 100644 index 000000000..dce5c3cdd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CaptainBentleyDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CaptainBentleyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CaptainBentleyDialogue.class new file mode 100644 index 000000000..21705c0af Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CaptainBentleyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CaptainDalburDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CaptainDalburDialogue.class new file mode 100644 index 000000000..f5e5f350c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CaptainDalburDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CartConductorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CartConductorDialogue.class new file mode 100644 index 000000000..a123650ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CartConductorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CassieDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CassieDialogue.class new file mode 100644 index 000000000..e65712e02 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CassieDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CaveMonk.class b/CompiledServer/production/Server/plugin/dialogue/CaveMonk.class new file mode 100644 index 000000000..425c91702 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CaveMonk.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CeolburgDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CeolburgDialogue.class new file mode 100644 index 000000000..a3f515997 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CeolburgDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ChaosElementalJRDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ChaosElementalJRDialogue.class new file mode 100644 index 000000000..c6f3dc58a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ChaosElementalJRDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CharlieTheTrampDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CharlieTheTrampDialogue.class new file mode 100644 index 000000000..b51e3d384 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CharlieTheTrampDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ChemistDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ChemistDialogue.class new file mode 100644 index 000000000..afdc5e35f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ChemistDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ConeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ConeDialogue.class new file mode 100644 index 000000000..abb4025b5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ConeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$1.class b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$1.class new file mode 100644 index 000000000..5cc32cd73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$MeatPlugin$MeatProperty.class b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$MeatPlugin$MeatProperty.class new file mode 100644 index 000000000..6f3126bf3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$MeatPlugin$MeatProperty.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$MeatPlugin.class b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$MeatPlugin.class new file mode 100644 index 000000000..4f665e955 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin$MeatPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin.class new file mode 100644 index 000000000..1d8df4c60 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CookingDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CookingTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CookingTutorDialogue.class new file mode 100644 index 000000000..bbeeab63a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CookingTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CraftingTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CraftingTutorDialogue.class new file mode 100644 index 000000000..8b1cd0d45 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CraftingTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CrossbowDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/CrossbowDialogue$1.class new file mode 100644 index 000000000..1a3c558f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CrossbowDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CrossbowDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CrossbowDialogue.class new file mode 100644 index 000000000..223520705 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CrossbowDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CuffsDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CuffsDialogue.class new file mode 100644 index 000000000..25c5777f9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CuffsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/CustomsOfficerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/CustomsOfficerDialogue.class new file mode 100644 index 000000000..b6a6797bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/CustomsOfficerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DSChestDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DSChestDialogue.class new file mode 100644 index 000000000..0cc9dc1ce Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DSChestDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DairyChurnDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DairyChurnDialogue.class new file mode 100644 index 000000000..88f648abb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DairyChurnDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DairyChurnOptionPlugin.class b/CompiledServer/production/Server/plugin/dialogue/DairyChurnOptionPlugin.class new file mode 100644 index 000000000..3dbdc5f45 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DairyChurnOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DartCreateDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DartCreateDialogue.class new file mode 100644 index 000000000..6f4ceedaf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DartCreateDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DavonDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DavonDialogue.class new file mode 100644 index 000000000..ac501325b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DavonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DelMontyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DelMontyDialogue.class new file mode 100644 index 000000000..5d4ad4836 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DelMontyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DenulthDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DenulthDialogue.class new file mode 100644 index 000000000..a020d59ba Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DenulthDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DestroyItemPlugin.class b/CompiledServer/production/Server/plugin/dialogue/DestroyItemPlugin.class new file mode 100644 index 000000000..79e308b5d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DestroyItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DiangoDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DiangoDialogue.class new file mode 100644 index 000000000..71e2eb6de Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DiangoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DismissDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/DismissDialoguePlugin.class new file mode 100644 index 000000000..d66ac4934 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DismissDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DommikDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DommikDialogue.class new file mode 100644 index 000000000..8c07b2278 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DommikDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DonieDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DonieDialogue.class new file mode 100644 index 000000000..959700093 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DonieDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DoomsayerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DoomsayerDialogue.class new file mode 100644 index 000000000..9afafc302 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DoomsayerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DoorPerilDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DoorPerilDialogue.class new file mode 100644 index 000000000..b2e80630d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DoorPerilDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DoricDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DoricDialogue.class new file mode 100644 index 000000000..fc04ce664 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DoricDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DrHarlowDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DrHarlowDialogue.class new file mode 100644 index 000000000..79bdb5ebd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DrHarlowDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DrOnglewipDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DrOnglewipDialogue.class new file mode 100644 index 000000000..4ae43916c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DrOnglewipDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DragonShieldDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DragonShieldDialogue.class new file mode 100644 index 000000000..5c1850d55 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DragonShieldDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DraulLeptoc.class b/CompiledServer/production/Server/plugin/dialogue/DraulLeptoc.class new file mode 100644 index 000000000..e0e2b9110 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DraulLeptoc.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DraynorBankGuard.class b/CompiledServer/production/Server/plugin/dialogue/DraynorBankGuard.class new file mode 100644 index 000000000..f300be084 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DraynorBankGuard.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DrezelDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DrezelDialogue.class new file mode 100644 index 000000000..b8409df67 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DrezelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DrezelMonumentDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DrezelMonumentDialogue.class new file mode 100644 index 000000000..d0ebc1e9c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DrezelMonumentDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DrokarDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DrokarDialogue.class new file mode 100644 index 000000000..443b6a2b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DrokarDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DumpBOBDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DumpBOBDialogue.class new file mode 100644 index 000000000..ed84e01d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DumpBOBDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DunstanDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DunstanDialogue.class new file mode 100644 index 000000000..e1bdd0e26 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DunstanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/DwarfShopDialogue.class b/CompiledServer/production/Server/plugin/dialogue/DwarfShopDialogue.class new file mode 100644 index 000000000..bbd21be1b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/DwarfShopDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EadburgDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EadburgDialogue.class new file mode 100644 index 000000000..a47742966 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EadburgDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EblisDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EblisDialogue.class new file mode 100644 index 000000000..fbddd1cdb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EblisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EdgevilleMonkDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EdgevilleMonkDialogue.class new file mode 100644 index 000000000..f6bdbc9d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EdgevilleMonkDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EdgevilleShopKeeperDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EdgevilleShopKeeperDialogue.class new file mode 100644 index 000000000..ef59ad8e0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EdgevilleShopKeeperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EllamariaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EllamariaDialogue.class new file mode 100644 index 000000000..0fc9e4798 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EllamariaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EllyTheCamelDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EllyTheCamelDialogue.class new file mode 100644 index 000000000..acfd6c8f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EllyTheCamelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EmeraldBenedictDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EmeraldBenedictDialogue.class new file mode 100644 index 000000000..1a42f447f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EmeraldBenedictDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EnchantTiaraDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/EnchantTiaraDialogue$1.class new file mode 100644 index 000000000..d63e75888 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EnchantTiaraDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EnchantTiaraDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EnchantTiaraDialogue.class new file mode 100644 index 000000000..ffce887b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EnchantTiaraDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EntranaChurchMonk.class b/CompiledServer/production/Server/plugin/dialogue/EntranaChurchMonk.class new file mode 100644 index 000000000..e60647983 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EntranaChurchMonk.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ErnestDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ErnestDialogue.class new file mode 100644 index 000000000..b0e245900 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ErnestDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EstateAgentDialogue.class b/CompiledServer/production/Server/plugin/dialogue/EstateAgentDialogue.class new file mode 100644 index 000000000..5ee8f4849 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EstateAgentDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/EventLocatorDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/EventLocatorDialoguePlugin.class new file mode 100644 index 000000000..2591358ed Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/EventLocatorDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ExplorerJackDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ExplorerJackDialogue.class new file mode 100644 index 000000000..1475a2d63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ExplorerJackDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FadliDialogue$FadliPlugin.class b/CompiledServer/production/Server/plugin/dialogue/FadliDialogue$FadliPlugin.class new file mode 100644 index 000000000..8707ad964 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FadliDialogue$FadliPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FadliDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FadliDialogue.class new file mode 100644 index 000000000..f72bab215 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FadliDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FaladorGardenerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FaladorGardenerDialogue.class new file mode 100644 index 000000000..1c6ed1503 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FaladorGardenerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FaladorManHouseDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FaladorManHouseDialogue.class new file mode 100644 index 000000000..b7c74c29c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FaladorManHouseDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FaladorShopKeeperDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FaladorShopKeeperDialogue.class new file mode 100644 index 000000000..957d2cd13 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FaladorShopKeeperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FaladorSquireDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FaladorSquireDialogue.class new file mode 100644 index 000000000..b4e23d27b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FaladorSquireDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FaladorWomenParkDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FaladorWomenParkDialogue.class new file mode 100644 index 000000000..958548fe0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FaladorWomenParkDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FamiliarDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/FamiliarDialoguePlugin.class new file mode 100644 index 000000000..af39cbe7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FamiliarDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FaridMorrisaneDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FaridMorrisaneDialogue.class new file mode 100644 index 000000000..68fdb4574 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FaridMorrisaneDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FatherAereckDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FatherAereckDialogue.class new file mode 100644 index 000000000..25be426a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FatherAereckDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FatherLawrenceDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FatherLawrenceDialogue.class new file mode 100644 index 000000000..ea6770fef Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FatherLawrenceDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FatherUhrneyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FatherUhrneyDialogue.class new file mode 100644 index 000000000..24d35894d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FatherUhrneyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FenitasDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FenitasDialogue.class new file mode 100644 index 000000000..15788c087 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FenitasDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FilelioDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FilelioDialogue.class new file mode 100644 index 000000000..1966fd66f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FilelioDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FishingTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FishingTutorDialogue.class new file mode 100644 index 000000000..4f199da1b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FishingTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FlynnDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FlynnDialogue.class new file mode 100644 index 000000000..ef5d3bf2d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FlynnDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FortressGuardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FortressGuardDialogue.class new file mode 100644 index 000000000..15de9ffc3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FortressGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FortunatoDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FortunatoDialogue.class new file mode 100644 index 000000000..2f9fb9795 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FortunatoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FredTheFarmer.class b/CompiledServer/production/Server/plugin/dialogue/FredTheFarmer.class new file mode 100644 index 000000000..80bcd2204 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FredTheFarmer.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FrincosDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FrincosDialogue.class new file mode 100644 index 000000000..9a38bd54b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FrincosDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FritzGlassBlowerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/FritzGlassBlowerDialogue.class new file mode 100644 index 000000000..8a145812f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FritzGlassBlowerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/FurTradePlugin.class b/CompiledServer/production/Server/plugin/dialogue/FurTradePlugin.class new file mode 100644 index 000000000..5a0cb360f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/FurTradePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GWDKnightDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/GWDKnightDialogue$1.class new file mode 100644 index 000000000..b67eac558 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GWDKnightDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GWDKnightDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GWDKnightDialogue.class new file mode 100644 index 000000000..18ee16e03 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GWDKnightDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GamFredDialoue.class b/CompiledServer/production/Server/plugin/dialogue/GamFredDialoue.class new file mode 100644 index 000000000..62be774bf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GamFredDialoue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GarvDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GarvDialogue.class new file mode 100644 index 000000000..3416cc84e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GarvDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GeeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GeeDialogue.class new file mode 100644 index 000000000..9d49cecab Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GeeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GemMerchantDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GemMerchantDialogue.class new file mode 100644 index 000000000..d280b66ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GemMerchantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GemTradeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GemTradeDialogue.class new file mode 100644 index 000000000..6be079880 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GemTradeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GerrantDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GerrantDialogue.class new file mode 100644 index 000000000..638ec639f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GerrantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GertrudeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GertrudeDialogue.class new file mode 100644 index 000000000..56ade7bc6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GertrudeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$1.class new file mode 100644 index 000000000..0d765e86d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$2.class b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$2.class new file mode 100644 index 000000000..d5e9398ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$3.class b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$3.class new file mode 100644 index 000000000..77035f9d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue.class new file mode 100644 index 000000000..dc30b06ed Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GertrudesCatDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GhommalDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GhommalDialogue.class new file mode 100644 index 000000000..9d414054e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GhommalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GnomeSpiritTreeDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/GnomeSpiritTreeDialogue$1.class new file mode 100644 index 000000000..9784a1423 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GnomeSpiritTreeDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GnomeSpiritTreeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GnomeSpiritTreeDialogue.class new file mode 100644 index 000000000..17c5ff0e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GnomeSpiritTreeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GnomeTrainerPlugin.class b/CompiledServer/production/Server/plugin/dialogue/GnomeTrainerPlugin.class new file mode 100644 index 000000000..778dc7b52 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GnomeTrainerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GoblinVillageDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GoblinVillageDialogue.class new file mode 100644 index 000000000..75a95c765 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GoblinVillageDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GodswordDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GodswordDialogue.class new file mode 100644 index 000000000..4997d5379 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GodswordDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GraardoorJRDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GraardoorJRDialogue.class new file mode 100644 index 000000000..b2f9372d9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GraardoorJRDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrandExchangeClerk.class b/CompiledServer/production/Server/plugin/dialogue/GrandExchangeClerk.class new file mode 100644 index 000000000..118a7f100 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrandExchangeClerk.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrandExchangeTutor.class b/CompiledServer/production/Server/plugin/dialogue/GrandExchangeTutor.class new file mode 100644 index 000000000..1f9cffeae Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrandExchangeTutor.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrandpaJackPlguin$1.class b/CompiledServer/production/Server/plugin/dialogue/GrandpaJackPlguin$1.class new file mode 100644 index 000000000..daba942ea Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrandpaJackPlguin$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrandpaJackPlguin.class b/CompiledServer/production/Server/plugin/dialogue/GrandpaJackPlguin.class new file mode 100644 index 000000000..9282ea42f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrandpaJackPlguin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GregoryDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GregoryDialogue.class new file mode 100644 index 000000000..aa41ee419 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GregoryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrillieGroatsDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GrillieGroatsDialogue.class new file mode 100644 index 000000000..3a904b2f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrillieGroatsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrimgnashDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GrimgnashDialogue.class new file mode 100644 index 000000000..2d3048502 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrimgnashDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GruborDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GruborDialogue.class new file mode 100644 index 000000000..0381da9a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GruborDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GrumDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GrumDialogue.class new file mode 100644 index 000000000..f6cd64c04 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GrumDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GuidorsWifeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GuidorsWifeDialogue.class new file mode 100644 index 000000000..c40345249 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GuidorsWifeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/GunthorBraveDialogue.class b/CompiledServer/production/Server/plugin/dialogue/GunthorBraveDialogue.class new file mode 100644 index 000000000..d8caf892a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/GunthorBraveDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HairdresserDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HairdresserDialogue.class new file mode 100644 index 000000000..73bc08366 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HairdresserDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HansDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/HansDialoguePlugin.class new file mode 100644 index 000000000..3fd0a802f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HansDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HariDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HariDialogue.class new file mode 100644 index 000000000..f3f16a989 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HariDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HarlanDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HarlanDialogue.class new file mode 100644 index 000000000..a14d52d64 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HarlanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HarrallakMenarous.class b/CompiledServer/production/Server/plugin/dialogue/HarrallakMenarous.class new file mode 100644 index 000000000..34341c628 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HarrallakMenarous.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HarryDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HarryDialogue.class new file mode 100644 index 000000000..5da2adcc1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HarryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HassanDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HassanDialogue.class new file mode 100644 index 000000000..69daeef1d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HassanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HeadChefDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HeadChefDialogue.class new file mode 100644 index 000000000..7c656c2de Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HeadChefDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HerbTarDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/HerbTarDialogue$1.class new file mode 100644 index 000000000..3129626b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HerbTarDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HerbTarDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HerbTarDialogue.class new file mode 100644 index 000000000..61d1e078b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HerbTarDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HeronDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HeronDialogue.class new file mode 100644 index 000000000..eeb19a12c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HeronDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HerquinDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HerquinDialogue.class new file mode 100644 index 000000000..b1d69cfc8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HerquinDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HettyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HettyDialogue.class new file mode 100644 index 000000000..a10a004a2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HettyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HicktonDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HicktonDialogue.class new file mode 100644 index 000000000..3d2c5c48d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HicktonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HighPriestDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HighPriestDialogue.class new file mode 100644 index 000000000..f952f084b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HighPriestDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HildDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HildDialogue.class new file mode 100644 index 000000000..d45b547cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HildDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HistanDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HistanDialogue.class new file mode 100644 index 000000000..39c10afe3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HistanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HiylikMynaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HiylikMynaDialogue.class new file mode 100644 index 000000000..8fe5752bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HiylikMynaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HofutThandDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HofutThandDialogue.class new file mode 100644 index 000000000..893f3e818 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HofutThandDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HoodedMonkDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HoodedMonkDialogue.class new file mode 100644 index 000000000..ef75b9fe0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HoodedMonkDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HooknosedJackDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HooknosedJackDialogue.class new file mode 100644 index 000000000..ee58c1724 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HooknosedJackDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HorvikDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HorvikDialogue.class new file mode 100644 index 000000000..abce7ed0c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HorvikDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HuntingExpert.class b/CompiledServer/production/Server/plugin/dialogue/HuntingExpert.class new file mode 100644 index 000000000..d03487b26 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HuntingExpert.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HuraDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HuraDialogue.class new file mode 100644 index 000000000..0f33f838a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HuraDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/HygdDialogue.class b/CompiledServer/production/Server/plugin/dialogue/HygdDialogue.class new file mode 100644 index 000000000..1f5b988b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/HygdDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/IcyCavernDialogue.class b/CompiledServer/production/Server/plugin/dialogue/IcyCavernDialogue.class new file mode 100644 index 000000000..09c46c949 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/IcyCavernDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/IgnatiusVulcanDialogue$IgnatiusVulcanNPC.class b/CompiledServer/production/Server/plugin/dialogue/IgnatiusVulcanDialogue$IgnatiusVulcanNPC.class new file mode 100644 index 000000000..e521a05ff Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/IgnatiusVulcanDialogue$IgnatiusVulcanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/IgnatiusVulcanDialogue.class b/CompiledServer/production/Server/plugin/dialogue/IgnatiusVulcanDialogue.class new file mode 100644 index 000000000..975c37326 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/IgnatiusVulcanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/InformationclerkMuseumDialogue.class b/CompiledServer/production/Server/plugin/dialogue/InformationclerkMuseumDialogue.class new file mode 100644 index 000000000..875a69441 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/InformationclerkMuseumDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/IrinaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/IrinaDialogue.class new file mode 100644 index 000000000..b7e01ffb1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/IrinaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JackSeagullDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JackSeagullDialogue.class new file mode 100644 index 000000000..6346ea343 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JackSeagullDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JaraahDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JaraahDialogue.class new file mode 100644 index 000000000..6fe3a087a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JaraahDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JatixDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JatixDialogue.class new file mode 100644 index 000000000..6949cec73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JatixDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JeffDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JeffDialogue.class new file mode 100644 index 000000000..a8aac84f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JeffDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JiminuaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JiminuaDialogue.class new file mode 100644 index 000000000..1c2797a14 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JiminuaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JoeGuardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JoeGuardDialogue.class new file mode 100644 index 000000000..2ed2f9eb3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JoeGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JosephDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JosephDialogue.class new file mode 100644 index 000000000..cc4ab4db2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JosephDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JoshuaDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/JoshuaDialoguePlugin.class new file mode 100644 index 000000000..d966a0933 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JoshuaDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JossikDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JossikDialogue.class new file mode 100644 index 000000000..7036a83cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JossikDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/JungleForesterDialogue.class b/CompiledServer/production/Server/plugin/dialogue/JungleForesterDialogue.class new file mode 100644 index 000000000..0937355a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/JungleForesterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KalebDialgoue.class b/CompiledServer/production/Server/plugin/dialogue/KalebDialgoue.class new file mode 100644 index 000000000..4dc3f88ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KalebDialgoue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KalebParamaya.class b/CompiledServer/production/Server/plugin/dialogue/KalebParamaya.class new file mode 100644 index 000000000..573665d74 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KalebParamaya.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KamfreenaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KamfreenaDialogue.class new file mode 100644 index 000000000..ce4a1ae70 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KamfreenaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KanelDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KanelDialogue.class new file mode 100644 index 000000000..ba8fb60fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KanelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KangaiMauDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KangaiMauDialogue.class new file mode 100644 index 000000000..dfa44598a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KangaiMauDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KaqemeexDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KaqemeexDialogue.class new file mode 100644 index 000000000..38b92cc74 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KaqemeexDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KaramajaManDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KaramajaManDialogue.class new file mode 100644 index 000000000..49f5f20d2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KaramajaManDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KarimDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KarimDialogue.class new file mode 100644 index 000000000..b1b480049 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KarimDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KayleeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KayleeDialogue.class new file mode 100644 index 000000000..261be8ad6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KayleeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KeyMasterDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/KeyMasterDialoguePlugin.class new file mode 100644 index 000000000..b25848db1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KeyMasterDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KittenInteractDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/KittenInteractDialogue$1.class new file mode 100644 index 000000000..1a0e5d0fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KittenInteractDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KittenInteractDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KittenInteractDialogue.class new file mode 100644 index 000000000..c9c952e7b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KittenInteractDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KlarenseDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KlarenseDialogue.class new file mode 100644 index 000000000..2f53865ea Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KlarenseDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KreeJrDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KreeJrDialogue.class new file mode 100644 index 000000000..96f0ef2a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KreeJrDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/KrilJRDialogue.class b/CompiledServer/production/Server/plugin/dialogue/KrilJRDialogue.class new file mode 100644 index 000000000..738862963 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/KrilJRDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LakkiDwarfDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LakkiDwarfDialogue.class new file mode 100644 index 000000000..6b0b02e2b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LakkiDwarfDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LarxusDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LarxusDialogue.class new file mode 100644 index 000000000..98104d5c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LarxusDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue$1.class new file mode 100644 index 000000000..e83516ecf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue$2.class b/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue$2.class new file mode 100644 index 000000000..1124792ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue.class new file mode 100644 index 000000000..4b96a68d3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LeatherCraftDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LeelaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LeelaDialogue.class new file mode 100644 index 000000000..f9b46a288 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LeelaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LeonDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LeonDialogue.class new file mode 100644 index 000000000..ce0d02847 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LeonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LidioDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LidioDialogue.class new file mode 100644 index 000000000..2e90dbcab Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LidioDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LillyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LillyDialogue.class new file mode 100644 index 000000000..55dd2b53b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LillyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LimbDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/LimbDialogue$1.class new file mode 100644 index 000000000..0820b92fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LimbDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LimbDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LimbDialogue.class new file mode 100644 index 000000000..744cc9afe Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LimbDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LitaraDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LitaraDialogue.class new file mode 100644 index 000000000..33e1d9c81 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LitaraDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LokarSearunnerDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/LokarSearunnerDialogue$1.class new file mode 100644 index 000000000..8aaa60590 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LokarSearunnerDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LokarSearunnerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LokarSearunnerDialogue.class new file mode 100644 index 000000000..588afd229 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LokarSearunnerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LongbowBenDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LongbowBenDialogue.class new file mode 100644 index 000000000..70192fddd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LongbowBenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LouiLegsDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LouiLegsDialogue.class new file mode 100644 index 000000000..daf283e7f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LouiLegsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LoweDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LoweDialogue.class new file mode 100644 index 000000000..b228c2144 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LoweDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LubufuDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LubufuDialogue.class new file mode 100644 index 000000000..2d3926341 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LubufuDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LucyPartyRoomDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/LucyPartyRoomDialoguePlugin.class new file mode 100644 index 000000000..306182210 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LucyPartyRoomDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LumbridgeCookDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LumbridgeCookDialogue.class new file mode 100644 index 000000000..7d308ba5e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LumbridgeCookDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LumbridgeGuideDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LumbridgeGuideDialogue.class new file mode 100644 index 000000000..901971c6e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LumbridgeGuideDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LumbridgeJailGuard.class b/CompiledServer/production/Server/plugin/dialogue/LumbridgeJailGuard.class new file mode 100644 index 000000000..2c2743445 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LumbridgeJailGuard.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampArcher.class b/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampArcher.class new file mode 100644 index 000000000..3aebd006c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampArcher.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampMonk.class b/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampMonk.class new file mode 100644 index 000000000..44835a4b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampMonk.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampWizard.class b/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampWizard.class new file mode 100644 index 000000000..f6293869b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LumbridgeSwampWizard.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/LuthasDialogue.class b/CompiledServer/production/Server/plugin/dialogue/LuthasDialogue.class new file mode 100644 index 000000000..64d0df602 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/LuthasDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MagicStoreDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MagicStoreDialogue.class new file mode 100644 index 000000000..c5179ab54 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MagicStoreDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MagicTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MagicTutorDialogue.class new file mode 100644 index 000000000..09834011c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MagicTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MakeOverMageDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MakeOverMageDialogue.class new file mode 100644 index 000000000..485749cc4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MakeOverMageDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MalakDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MalakDialogue.class new file mode 100644 index 000000000..9d7361982 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MalakDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MamaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MamaDialogue.class new file mode 100644 index 000000000..3864c1c55 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MamaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ManDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/ManDialoguePlugin.class new file mode 100644 index 000000000..03724dc5f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ManDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ManorFountainDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ManorFountainDialogue.class new file mode 100644 index 000000000..dff22ea1b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ManorFountainDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MartinTheMasterGardener.class b/CompiledServer/production/Server/plugin/dialogue/MartinTheMasterGardener.class new file mode 100644 index 000000000..27023f319 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MartinTheMasterGardener.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MartinThwaitDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/MartinThwaitDialogue$1.class new file mode 100644 index 000000000..39164d078 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MartinThwaitDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MartinThwaitDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MartinThwaitDialogue.class new file mode 100644 index 000000000..eeb494b62 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MartinThwaitDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MathiasFlaconryDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MathiasFlaconryDialogue.class new file mode 100644 index 000000000..042fdbfa7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MathiasFlaconryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MazionDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MazionDialogue.class new file mode 100644 index 000000000..b6bca0be8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MazionDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MeleeShopDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/MeleeShopDialoguePlugin.class new file mode 100644 index 000000000..a0622e59f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MeleeShopDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MiningGuildDwarf.class b/CompiledServer/production/Server/plugin/dialogue/MiningGuildDwarf.class new file mode 100644 index 000000000..49ece45b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MiningGuildDwarf.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MiningSkillCapeDwarfDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MiningSkillCapeDwarfDialogue.class new file mode 100644 index 000000000..f680e6662 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MiningSkillCapeDwarfDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MiningtutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MiningtutorDialogue.class new file mode 100644 index 000000000..b8a6f8798 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MiningtutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MissSchismDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MissSchismDialogue.class new file mode 100644 index 000000000..2126e7634 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MissSchismDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MithGrappleDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/MithGrappleDialogue$1.class new file mode 100644 index 000000000..48b64979c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MithGrappleDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MithGrappleDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MithGrappleDialogue.class new file mode 100644 index 000000000..b54ebabd3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MithGrappleDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsDialogue$1.class new file mode 100644 index 000000000..f77acfad9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsDialogue.class new file mode 100644 index 000000000..761799126 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsPlugin$1.class b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsPlugin$1.class new file mode 100644 index 000000000..a05aa1fac Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsPlugin.class b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsPlugin.class new file mode 100644 index 000000000..e0b0b3c76 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MithrilSeedsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MonkOfEntranaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MonkOfEntranaDialogue.class new file mode 100644 index 000000000..65365423c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MonkOfEntranaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MonkeyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MonkeyDialogue.class new file mode 100644 index 000000000..fb3739ed9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MonkeyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MorganDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MorganDialogue.class new file mode 100644 index 000000000..c6cd5651b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MorganDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MorrisDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MorrisDialogue.class new file mode 100644 index 000000000..f4b093da4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MorrisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MubarizDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MubarizDialogue.class new file mode 100644 index 000000000..2f2229312 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MubarizDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MurkyMattDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MurkyMattDialogue.class new file mode 100644 index 000000000..dc074a561 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MurkyMattDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MuseumGuardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MuseumGuardDialogue.class new file mode 100644 index 000000000..62cad02f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MuseumGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/MuseumGuardVarrockDialogue.class b/CompiledServer/production/Server/plugin/dialogue/MuseumGuardVarrockDialogue.class new file mode 100644 index 000000000..6e6fa255a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/MuseumGuardVarrockDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/NarfsDialogue.class b/CompiledServer/production/Server/plugin/dialogue/NarfsDialogue.class new file mode 100644 index 000000000..433353f7c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/NarfsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/NikitiaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/NikitiaDialogue.class new file mode 100644 index 000000000..251f5cc76 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/NikitiaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/NurmofDialogue.class b/CompiledServer/production/Server/plugin/dialogue/NurmofDialogue.class new file mode 100644 index 000000000..9707b7a79 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/NurmofDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/OcaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/OcaDialogue.class new file mode 100644 index 000000000..7c4f0c6eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/OcaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/OliviaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/OliviaDialogue.class new file mode 100644 index 000000000..e3da4a2c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/OliviaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/OllieTheCamelDialogue.class b/CompiledServer/production/Server/plugin/dialogue/OllieTheCamelDialogue.class new file mode 100644 index 000000000..e8936deb1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/OllieTheCamelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/OracleDialogue.class b/CompiledServer/production/Server/plugin/dialogue/OracleDialogue.class new file mode 100644 index 000000000..4197d2f5a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/OracleDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/OttoGodblessedDialogue.class b/CompiledServer/production/Server/plugin/dialogue/OttoGodblessedDialogue.class new file mode 100644 index 000000000..fa1e3cbfe Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/OttoGodblessedDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/OutpostSquireDialogue.class b/CompiledServer/production/Server/plugin/dialogue/OutpostSquireDialogue.class new file mode 100644 index 000000000..cb25855e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/OutpostSquireDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PartyPeteDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/PartyPeteDialoguePlugin.class new file mode 100644 index 000000000..58994ce33 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PartyPeteDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PatchyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PatchyDialogue.class new file mode 100644 index 000000000..1845a2dba Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PatchyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PeksaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PeksaDialogue.class new file mode 100644 index 000000000..add78f511 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PeksaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PendaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PendaDialogue.class new file mode 100644 index 000000000..696983f7d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PendaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PetshopOwnerTaverly.class b/CompiledServer/production/Server/plugin/dialogue/PetshopOwnerTaverly.class new file mode 100644 index 000000000..b11b5634c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PetshopOwnerTaverly.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PhantuwtiFantstuwiFarSight.class b/CompiledServer/production/Server/plugin/dialogue/PhantuwtiFantstuwiFarSight.class new file mode 100644 index 000000000..255b54951 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PhantuwtiFantstuwiFarSight.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PhillipaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PhillipaDialogue.class new file mode 100644 index 000000000..481f3b611 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PhillipaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PhilopDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PhilopDialogue.class new file mode 100644 index 000000000..2787b93f2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PhilopDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PikkupstixDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PikkupstixDialogue.class new file mode 100644 index 000000000..4d63be267 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PikkupstixDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PirateJackieDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PirateJackieDialogue.class new file mode 100644 index 000000000..1bc491fa6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PirateJackieDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PoisionSalsementDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PoisionSalsementDialogue.class new file mode 100644 index 000000000..6bc10568a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PoisionSalsementDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PortSarimBartenderDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PortSarimBartenderDialogue.class new file mode 100644 index 000000000..1c13692d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PortSarimBartenderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PortSarimBrianDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PortSarimBrianDialogue.class new file mode 100644 index 000000000..00d269bdb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PortSarimBrianDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PoxDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PoxDialogue.class new file mode 100644 index 000000000..ddabfc1ea Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PoxDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PrayerTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PrayerTutorDialogue.class new file mode 100644 index 000000000..caeb128dc Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PrayerTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue$1.class new file mode 100644 index 000000000..44d8d0d8d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue$2.class b/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue$2.class new file mode 100644 index 000000000..150f3e929 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue.class new file mode 100644 index 000000000..e9e92cc22 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PrinceAliDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/PrinceBlackDragonDialogue.class b/CompiledServer/production/Server/plugin/dialogue/PrinceBlackDragonDialogue.class new file mode 100644 index 000000000..e749d4031 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/PrinceBlackDragonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ProfessorOddensteinPlugin$1.class b/CompiledServer/production/Server/plugin/dialogue/ProfessorOddensteinPlugin$1.class new file mode 100644 index 000000000..25b803550 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ProfessorOddensteinPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ProfessorOddensteinPlugin.class b/CompiledServer/production/Server/plugin/dialogue/ProfessorOddensteinPlugin.class new file mode 100644 index 000000000..bca1043cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ProfessorOddensteinPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/QuarterMasterDialogue.class b/CompiledServer/production/Server/plugin/dialogue/QuarterMasterDialogue.class new file mode 100644 index 000000000..d44feabcf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/QuarterMasterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RanaelDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RanaelDialogue.class new file mode 100644 index 000000000..6c4dbbfe1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RanaelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RangedTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RangedTutorDialogue.class new file mode 100644 index 000000000..9ebe712f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RangedTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ReadbeardFrankDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ReadbeardFrankDialogue.class new file mode 100644 index 000000000..004e26e5d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ReadbeardFrankDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ReffDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ReffDialogue.class new file mode 100644 index 000000000..2bb691f6b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ReffDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ReloboBlinyoDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ReloboBlinyoDialogue.class new file mode 100644 index 000000000..6196801e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ReloboBlinyoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ResearcherDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ResearcherDialogue.class new file mode 100644 index 000000000..478fa167a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ResearcherDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RestlessGhostDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RestlessGhostDialogue.class new file mode 100644 index 000000000..1364c1081 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RestlessGhostDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RimmingtonShopKeeperDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RimmingtonShopKeeperDialogue.class new file mode 100644 index 000000000..3425cfefb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RimmingtonShopKeeperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RockGolemDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RockGolemDialogue.class new file mode 100644 index 000000000..92cdfd9f8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RockGolemDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RoladDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RoladDialogue.class new file mode 100644 index 000000000..9c2ea6d7d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RoladDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RomilyWeaklaxDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RomilyWeaklaxDialogue.class new file mode 100644 index 000000000..41431524d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RomilyWeaklaxDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RoomikDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RoomikDialogue.class new file mode 100644 index 000000000..29827e99f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RoomikDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RufusDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RufusDialogue.class new file mode 100644 index 000000000..fbab0495d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RufusDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugDestination$1.class b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugDestination$1.class new file mode 100644 index 000000000..a3e81b661 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugDestination$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugDestination.class b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugDestination.class new file mode 100644 index 000000000..14fc954ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugDestination.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugMerchantPlugin.class b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugMerchantPlugin.class new file mode 100644 index 000000000..05640b55e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue$RugMerchantPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue.class new file mode 100644 index 000000000..0a0b7c98d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RugMerchantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/RustyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/RustyDialogue.class new file mode 100644 index 000000000..ccf9598b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/RustyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SabreenDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SabreenDialogue.class new file mode 100644 index 000000000..24f62caac Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SabreenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SandyDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SandyDialogue.class new file mode 100644 index 000000000..584681d44 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SandyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SanfewDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SanfewDialogue.class new file mode 100644 index 000000000..036ff7eb7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SanfewDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SaniDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SaniDialogue.class new file mode 100644 index 000000000..4177236e5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SaniDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SanibochDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SanibochDialogue.class new file mode 100644 index 000000000..fbb51f5e5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SanibochDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SarahFarmingPlugin.class b/CompiledServer/production/Server/plugin/dialogue/SarahFarmingPlugin.class new file mode 100644 index 000000000..6c9aa29d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SarahFarmingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SawmillOperator.class b/CompiledServer/production/Server/plugin/dialogue/SawmillOperator.class new file mode 100644 index 000000000..940ebb817 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SawmillOperator.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SbottDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SbottDialogue.class new file mode 100644 index 000000000..7c89e727a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SbottDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ScavvoDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ScavvoDialogue.class new file mode 100644 index 000000000..dccfe0cc1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ScavvoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ScoolboyMuseumDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ScoolboyMuseumDialogue.class new file mode 100644 index 000000000..ce80855e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ScoolboyMuseumDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ScoolgirlMuseumDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ScoolgirlMuseumDialogue.class new file mode 100644 index 000000000..3f7a09313 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ScoolgirlMuseumDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ScorpiasOffspringDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ScorpiasOffspringDialogue.class new file mode 100644 index 000000000..c43794d0b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ScorpiasOffspringDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SeamanDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/SeamanDialoguePlugin.class new file mode 100644 index 000000000..7f769a2d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SeamanDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SeerBartenderDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SeerBartenderDialogue.class new file mode 100644 index 000000000..b2b09a5e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SeerBartenderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SeerDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/SeerDialoguePlugin.class new file mode 100644 index 000000000..55802085f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SeerDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ServantDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ServantDialogue.class new file mode 100644 index 000000000..a007a74b8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ServantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SethGroatsDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SethGroatsDialogue.class new file mode 100644 index 000000000..dde5b472f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SethGroatsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShanomiDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ShanomiDialogue.class new file mode 100644 index 000000000..35e9d7662 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShanomiDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShantayDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/ShantayDialogue$1.class new file mode 100644 index 000000000..e5c5ec4be Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShantayDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShantayDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ShantayDialogue.class new file mode 100644 index 000000000..0acac535b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShantayDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShantayGuard$1.class b/CompiledServer/production/Server/plugin/dialogue/ShantayGuard$1.class new file mode 100644 index 000000000..7e466e8e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShantayGuard$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShantayGuard.class b/CompiledServer/production/Server/plugin/dialogue/ShantayGuard.class new file mode 100644 index 000000000..078adf69b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShantayGuard.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShilopDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ShilopDialogue.class new file mode 100644 index 000000000..e43655ed3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShilopDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ShopkeeperDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ShopkeeperDialogue.class new file mode 100644 index 000000000..4668984fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ShopkeeperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SigmundDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SigmundDialogue.class new file mode 100644 index 000000000..381b021d3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SigmundDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SigurdDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SigurdDialogue.class new file mode 100644 index 000000000..5a7907b66 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SigurdDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SilkMerchantPlugin$1.class b/CompiledServer/production/Server/plugin/dialogue/SilkMerchantPlugin$1.class new file mode 100644 index 000000000..7afe9cd85 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SilkMerchantPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SilkMerchantPlugin.class b/CompiledServer/production/Server/plugin/dialogue/SilkMerchantPlugin.class new file mode 100644 index 000000000..be5a0cd4e Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SilkMerchantPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SilkTradeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SilkTradeDialogue.class new file mode 100644 index 000000000..ced607451 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SilkTradeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SilverMechantPlugin.class b/CompiledServer/production/Server/plugin/dialogue/SilverMechantPlugin.class new file mode 100644 index 000000000..cca0101bd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SilverMechantPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SimpleDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/SimpleDialoguePlugin.class new file mode 100644 index 000000000..3081d9ce0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SimpleDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SimpleEntityMessage.class b/CompiledServer/production/Server/plugin/dialogue/SimpleEntityMessage.class new file mode 100644 index 000000000..e44eaa7e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SimpleEntityMessage.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SinisterStrangerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SinisterStrangerDialogue.class new file mode 100644 index 000000000..a1bcdac36 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SinisterStrangerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SirTiffyCashienDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SirTiffyCashienDialogue.class new file mode 100644 index 000000000..36811e6f2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SirTiffyCashienDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SirVyvinDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SirVyvinDialogue.class new file mode 100644 index 000000000..51a9de541 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SirVyvinDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SkillDialoguePlugin$1.class b/CompiledServer/production/Server/plugin/dialogue/SkillDialoguePlugin$1.class new file mode 100644 index 000000000..a2986c2ce Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SkillDialoguePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SkillDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/SkillDialoguePlugin.class new file mode 100644 index 000000000..32d3bc92a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SkillDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SkullSceptreDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SkullSceptreDialogue.class new file mode 100644 index 000000000..460d9cfc4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SkullSceptreDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SloaneDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SloaneDialogue.class new file mode 100644 index 000000000..eb049ee18 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SloaneDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SmithingApparenticeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SmithingApparenticeDialogue.class new file mode 100644 index 000000000..b3c088431 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SmithingApparenticeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SofiyaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SofiyaDialogue.class new file mode 100644 index 000000000..3d2986e68 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SofiyaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SorcceresDialouge$1.class b/CompiledServer/production/Server/plugin/dialogue/SorcceresDialouge$1.class new file mode 100644 index 000000000..bd7d7f2d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SorcceresDialouge$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SorcceresDialouge.class b/CompiledServer/production/Server/plugin/dialogue/SorcceresDialouge.class new file mode 100644 index 000000000..ee00cb15a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SorcceresDialouge.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SpellbookSwapDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SpellbookSwapDialogue.class new file mode 100644 index 000000000..e5856f267 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SpellbookSwapDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SpiceSellerPlugin.class b/CompiledServer/production/Server/plugin/dialogue/SpiceSellerPlugin.class new file mode 100644 index 000000000..8cfad0c1b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SpiceSellerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SpiritGraahkDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SpiritGraahkDialogue.class new file mode 100644 index 000000000..c34404cde Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SpiritGraahkDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SpiritKyattDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SpiritKyattDialogue.class new file mode 100644 index 000000000..8f4a0f238 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SpiritKyattDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SquireDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SquireDialogue.class new file mode 100644 index 000000000..8a0ef728c Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SquireDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SquireMagicDialougue.class b/CompiledServer/production/Server/plugin/dialogue/SquireMagicDialougue.class new file mode 100644 index 000000000..5791ddd30 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SquireMagicDialougue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SquireTypeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SquireTypeDialogue.class new file mode 100644 index 000000000..75b9d94be Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SquireTypeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/StringBowDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/StringBowDialogue$1.class new file mode 100644 index 000000000..720a6b9e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/StringBowDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/StringBowDialogue.class b/CompiledServer/production/Server/plugin/dialogue/StringBowDialogue.class new file mode 100644 index 000000000..0ce4e9f3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/StringBowDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SurgeonGeneralTafani.class b/CompiledServer/production/Server/plugin/dialogue/SurgeonGeneralTafani.class new file mode 100644 index 000000000..1dfb88b91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SurgeonGeneralTafani.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SurokMagis.class b/CompiledServer/production/Server/plugin/dialogue/SurokMagis.class new file mode 100644 index 000000000..924947025 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SurokMagis.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/SvetlanaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/SvetlanaDialogue.class new file mode 100644 index 000000000..a2495c1ff Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/SvetlanaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TakiDwarfDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TakiDwarfDialogue.class new file mode 100644 index 000000000..9ab5ea47a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TakiDwarfDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TarquinDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TarquinDialogue.class new file mode 100644 index 000000000..ea5665c3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TarquinDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TaxidermistDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TaxidermistDialogue.class new file mode 100644 index 000000000..266faa27f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TaxidermistDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TeaSellerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TeaSellerDialogue.class new file mode 100644 index 000000000..65e62e68a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TeaSellerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TeacherandPupilMuseumDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TeacherandPupilMuseumDialogue.class new file mode 100644 index 000000000..0e2c24521 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TeacherandPupilMuseumDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TeegidDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TeegidDialogue.class new file mode 100644 index 000000000..428ad6da2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TeegidDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ThessaliaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ThessaliaDialogue.class new file mode 100644 index 000000000..3cdebee92 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ThessaliaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ThuroDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ThuroDialogue.class new file mode 100644 index 000000000..8a9d0e8c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ThuroDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TostigDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TostigDialogue.class new file mode 100644 index 000000000..c92f1464b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TostigDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TownCrierDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/TownCrierDialogue$1.class new file mode 100644 index 000000000..8a857fc01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TownCrierDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TownCrierDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TownCrierDialogue.class new file mode 100644 index 000000000..aa748b947 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TownCrierDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TraderCrewmemberDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TraderCrewmemberDialogue.class new file mode 100644 index 000000000..f18cd90d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TraderCrewmemberDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TraibornDialogue$1.class b/CompiledServer/production/Server/plugin/dialogue/TraibornDialogue$1.class new file mode 100644 index 000000000..91435c6a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TraibornDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TraibornDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TraibornDialogue.class new file mode 100644 index 000000000..28616747d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TraibornDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TrampDialogue.class b/CompiledServer/production/Server/plugin/dialogue/TrampDialogue.class new file mode 100644 index 000000000..32e7f6f02 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TrampDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TzHaarMejJah.class b/CompiledServer/production/Server/plugin/dialogue/TzHaarMejJah.class new file mode 100644 index 000000000..d41ef3b64 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TzHaarMejJah.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/TzHaarMejKah.class b/CompiledServer/production/Server/plugin/dialogue/TzHaarMejKah.class new file mode 100644 index 000000000..3910cf03f Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/TzHaarMejKah.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/UliziusDialogue.class b/CompiledServer/production/Server/plugin/dialogue/UliziusDialogue.class new file mode 100644 index 000000000..12410e261 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/UliziusDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ValaineDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ValaineDialogue.class new file mode 100644 index 000000000..67b1ce42d Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ValaineDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VanessaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VanessaDialogue.class new file mode 100644 index 000000000..433b64ebf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VanessaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VanstromKlause.class b/CompiledServer/production/Server/plugin/dialogue/VanstromKlause.class new file mode 100644 index 000000000..48077cc3a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VanstromKlause.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VarrockBartenderDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VarrockBartenderDialogue.class new file mode 100644 index 000000000..1e35dcb97 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VarrockBartenderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VarrockBrokenCart.class b/CompiledServer/production/Server/plugin/dialogue/VarrockBrokenCart.class new file mode 100644 index 000000000..5a7cf5ce5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VarrockBrokenCart.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VarrockCookDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VarrockCookDialogue.class new file mode 100644 index 000000000..cf4843dd9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VarrockCookDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VarrockEastBartenderDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VarrockEastBartenderDialogue.class new file mode 100644 index 000000000..c9e99d09b Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VarrockEastBartenderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VarrockGateGuardDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VarrockGateGuardDialogue.class new file mode 100644 index 000000000..b6f7f1b93 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VarrockGateGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VarrockSwordShopDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VarrockSwordShopDialogue.class new file mode 100644 index 000000000..524eb33c7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VarrockSwordShopDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VelorinaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VelorinaDialogue.class new file mode 100644 index 000000000..0cee9cf66 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VelorinaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VenenatisSpiderlingDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VenenatisSpiderlingDialogue.class new file mode 100644 index 000000000..e9c847a14 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VenenatisSpiderlingDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VeronicaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VeronicaDialogue.class new file mode 100644 index 000000000..1cc6b9bc0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VeronicaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/VetionJRDialogue.class b/CompiledServer/production/Server/plugin/dialogue/VetionJRDialogue.class new file mode 100644 index 000000000..41d0f20bd Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/VetionJRDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WayneDialogue.class b/CompiledServer/production/Server/plugin/dialogue/WayneDialogue.class new file mode 100644 index 000000000..6eaaaf7e3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WayneDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WhiteKnightDialoguePlugin.class b/CompiledServer/production/Server/plugin/dialogue/WhiteKnightDialoguePlugin.class new file mode 100644 index 000000000..e10fe6514 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WhiteKnightDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WiloughDialogue.class b/CompiledServer/production/Server/plugin/dialogue/WiloughDialogue.class new file mode 100644 index 000000000..3a1b750f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WiloughDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WiseOldManDialogue.class b/CompiledServer/production/Server/plugin/dialogue/WiseOldManDialogue.class new file mode 100644 index 000000000..534d90da6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WiseOldManDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WoodsmanTutorDialogue.class b/CompiledServer/production/Server/plugin/dialogue/WoodsmanTutorDialogue.class new file mode 100644 index 000000000..1f9cad411 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WoodsmanTutorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WydinDialogue.class b/CompiledServer/production/Server/plugin/dialogue/WydinDialogue.class new file mode 100644 index 000000000..ba658e7f2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WydinDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/WysonTheGardenerDialogue.class b/CompiledServer/production/Server/plugin/dialogue/WysonTheGardenerDialogue.class new file mode 100644 index 000000000..11c602167 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/WysonTheGardenerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/YadvigaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/YadvigaDialogue.class new file mode 100644 index 000000000..a4590e571 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/YadvigaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/YuriDialogue.class b/CompiledServer/production/Server/plugin/dialogue/YuriDialogue.class new file mode 100644 index 000000000..90247f630 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/YuriDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ZahwaDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ZahwaDialogue.class new file mode 100644 index 000000000..97f1d26a3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ZahwaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ZamboDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ZamboDialogue.class new file mode 100644 index 000000000..4003a7fdb Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ZamboDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ZekeDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ZekeDialogue.class new file mode 100644 index 000000000..51848516a Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ZekeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/ZilyanaJRDialogue.class b/CompiledServer/production/Server/plugin/dialogue/ZilyanaJRDialogue.class new file mode 100644 index 000000000..001a7f496 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/ZilyanaJRDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/book/GrimDiary.class b/CompiledServer/production/Server/plugin/dialogue/book/GrimDiary.class new file mode 100644 index 000000000..e9f5ebab6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/book/GrimDiary.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/book/KeldagrimRuleBook.class b/CompiledServer/production/Server/plugin/dialogue/book/KeldagrimRuleBook.class new file mode 100644 index 000000000..c3759b1ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/book/KeldagrimRuleBook.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/book/SecurityBookPlugin.class b/CompiledServer/production/Server/plugin/dialogue/book/SecurityBookPlugin.class new file mode 100644 index 000000000..36839c9cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/book/SecurityBookPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/dialogue/book/StrongholdNotes.class b/CompiledServer/production/Server/plugin/dialogue/book/StrongholdNotes.class new file mode 100644 index 000000000..0b03308a5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/dialogue/book/StrongholdNotes.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$ChristmasEventOptionPlugin$1.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$ChristmasEventOptionPlugin$1.class new file mode 100644 index 000000000..63937e44c Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$ChristmasEventOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$ChristmasEventOptionPlugin.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$ChristmasEventOptionPlugin.class new file mode 100644 index 000000000..bad0a8b99 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$ChristmasEventOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$PeltOptionHandler$1.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$PeltOptionHandler$1.class new file mode 100644 index 000000000..a7844338a Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$PeltOptionHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$PeltOptionHandler.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$PeltOptionHandler.class new file mode 100644 index 000000000..a0567e562 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$PeltOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$QueenOfSnowDialogue.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$QueenOfSnowDialogue.class new file mode 100644 index 000000000..beba32d8b Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$QueenOfSnowDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowImpDialogue.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowImpDialogue.class new file mode 100644 index 000000000..f98a1138f Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowImpDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowballItemPlugin.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowballItemPlugin.class new file mode 100644 index 000000000..8d793e036 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowballItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanHatComponentPlugin.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanHatComponentPlugin.class new file mode 100644 index 000000000..3bebbd44b Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanHatComponentPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler$1.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler$1.class new file mode 100644 index 000000000..bbf7708c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler$SnowmanDialogue.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler$SnowmanDialogue.class new file mode 100644 index 000000000..28076141e Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler$SnowmanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler.class new file mode 100644 index 000000000..222f69132 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanItemHandler.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanNPC.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanNPC.class new file mode 100644 index 000000000..5ad022831 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent$SnowmanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent.class b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent.class new file mode 100644 index 000000000..ac78247e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/christmas/ChristmasEvent.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$BasketofEggsPlugin.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$BasketofEggsPlugin.class new file mode 100644 index 000000000..6198c790c Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$BasketofEggsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$ChocolateEggPlugin.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$ChocolateEggPlugin.class new file mode 100644 index 000000000..870246a04 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$ChocolateEggPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue$1.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue$1.class new file mode 100644 index 000000000..ca310a0b8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue$2.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue$2.class new file mode 100644 index 000000000..23f2de744 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue.class new file mode 100644 index 000000000..bd64814af Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterBunnyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterItemPlugin.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterItemPlugin.class new file mode 100644 index 000000000..ed1b77811 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$EasterItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$RubberchickenPlugin.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$RubberchickenPlugin.class new file mode 100644 index 000000000..c882507fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent$RubberchickenPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent.class b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent.class new file mode 100644 index 000000000..52a557c32 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/easter/BasketofEggsEvent.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$1.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$1.class new file mode 100644 index 000000000..58b69714d Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$10.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$10.class new file mode 100644 index 000000000..eebfd50e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$10.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$2.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$2.class new file mode 100644 index 000000000..2571da442 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$2.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$3.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$3.class new file mode 100644 index 000000000..e2da17b0a Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$3.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$4.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$4.class new file mode 100644 index 000000000..da06396c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$4.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$5.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$5.class new file mode 100644 index 000000000..01fefbaaf Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$5.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$6.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$6.class new file mode 100644 index 000000000..7a0aa8323 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$6.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$7.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$7.class new file mode 100644 index 000000000..617ce5e69 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$7.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$8.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$8.class new file mode 100644 index 000000000..a8cf2f2e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$8.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$9.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$9.class new file mode 100644 index 000000000..90d7d78e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$9.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler$DarkPortalDialogue$1.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler$DarkPortalDialogue$1.class new file mode 100644 index 000000000..7b3e543ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler$DarkPortalDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler$DarkPortalDialogue.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler$DarkPortalDialogue.class new file mode 100644 index 000000000..343013b65 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler$DarkPortalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler.class new file mode 100644 index 000000000..7ede3e193 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DarkPortalHandler.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DeathPortalZone.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DeathPortalZone.class new file mode 100644 index 000000000..0d0255d9a Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$DeathPortalZone.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimItem.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimItem.class new file mode 100644 index 000000000..eb0fee7e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimItem.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimItemHandler.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimItemHandler.class new file mode 100644 index 000000000..b15e01b03 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimItemHandler.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimReaperDialogue$1.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimReaperDialogue$1.class new file mode 100644 index 000000000..f5c28675a Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimReaperDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimReaperDialogue.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimReaperDialogue.class new file mode 100644 index 000000000..97787ab58 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$GrimReaperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$1.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$1.class new file mode 100644 index 000000000..edc096650 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$2.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$2.class new file mode 100644 index 000000000..42d9e303d Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$3.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$3.class new file mode 100644 index 000000000..3f44978d3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue.class new file mode 100644 index 000000000..1f43dc4ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherNPC.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherNPC.class new file mode 100644 index 000000000..7ed27d056 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent$MuncherNPC.class differ diff --git a/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent.class b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent.class new file mode 100644 index 000000000..0c98a7194 Binary files /dev/null and b/CompiledServer/production/Server/plugin/holiday/halloween/DeathMansionEvent.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/BedabinPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/BedabinPlugin.class new file mode 100644 index 000000000..227f21c18 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/BedabinPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin$1.class new file mode 100644 index 000000000..750da0d5f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin$2.class new file mode 100644 index 000000000..9a5c62604 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin.class new file mode 100644 index 000000000..0c4afaab0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/BrimhavenDungeonPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/BurthorpePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/BurthorpePlugin.class new file mode 100644 index 000000000..cb206d70a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/BurthorpePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/CamelotNodePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/CamelotNodePlugin.class new file mode 100644 index 000000000..a7fdbba77 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/CamelotNodePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin$1.class new file mode 100644 index 000000000..b62c415cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin$2.class new file mode 100644 index 000000000..e811b6d5d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin.class new file mode 100644 index 000000000..46e4bd28f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorManorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene$1.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene$1.class new file mode 100644 index 000000000..fb79d5ce1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene$EndDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene$EndDialogue.class new file mode 100644 index 000000000..d310be3c0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene$EndDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene.class new file mode 100644 index 000000000..fda6c5bb8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin$TelescopeCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin.class new file mode 100644 index 000000000..fcd4e178b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/DraynorNodePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/EdgevilleNodePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/EdgevilleNodePlugin.class new file mode 100644 index 000000000..b065d9947 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/EdgevilleNodePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/EntranaObjectPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/EntranaObjectPlugin.class new file mode 100644 index 000000000..6bdeb61ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/EntranaObjectPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin$1.class new file mode 100644 index 000000000..e2409b756 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin$2.class b/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin$2.class new file mode 100644 index 000000000..6ab0a725f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin.class new file mode 100644 index 000000000..49a13315f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/FaladorNodePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin$1.class new file mode 100644 index 000000000..cf90cab8b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin$2.class new file mode 100644 index 000000000..efef52545 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin.class new file mode 100644 index 000000000..eb92fd7fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/GnomeStrongholdPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$1.class new file mode 100644 index 000000000..4e009ed52 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$2$1.class b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$2$1.class new file mode 100644 index 000000000..3d1693926 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$2.class new file mode 100644 index 000000000..9db16533b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin.class new file mode 100644 index 000000000..6376eefdd Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/HamHideoutPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/HomePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/HomePlugin.class new file mode 100644 index 000000000..af7b6eb08 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/HomePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/KaramajaOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/KaramajaOptionPlugin.class new file mode 100644 index 000000000..2079c0d53 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/KaramajaOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/KhardianDesertPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/KhardianDesertPlugin.class new file mode 100644 index 000000000..be27866ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/KhardianDesertPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin$1.class new file mode 100644 index 000000000..7d2183b00 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin$ArcheryTargetPulse.class b/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin$ArcheryTargetPulse.class new file mode 100644 index 000000000..811009926 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin$ArcheryTargetPulse.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin.class new file mode 100644 index 000000000..faff6a60b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/LumbridgeNodePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/LunarIslePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/LunarIslePlugin.class new file mode 100644 index 000000000..2d0144c76 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/LunarIslePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/MonasteryPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/MonasteryPlugin.class new file mode 100644 index 000000000..5669116a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/MonasteryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin$1.class new file mode 100644 index 000000000..07579d904 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin$2.class new file mode 100644 index 000000000..2c9d69238 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin.class new file mode 100644 index 000000000..d42273e05 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/PortSarimPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/ShiloVillagePlugin$VillageCartDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/ShiloVillagePlugin$VillageCartDialogue.class new file mode 100644 index 000000000..793cdc3be Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/ShiloVillagePlugin$VillageCartDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/ShiloVillagePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/ShiloVillagePlugin.class new file mode 100644 index 000000000..e25a71f17 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/ShiloVillagePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TaverlyDungeonPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/TaverlyDungeonPlugin.class new file mode 100644 index 000000000..71b194a72 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TaverlyDungeonPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$1.class new file mode 100644 index 000000000..95f1e2805 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$SabaDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$SabaDialogue.class new file mode 100644 index 000000000..ceb431dca Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$SabaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$TenzingDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$TenzingDialogue.class new file mode 100644 index 000000000..dd52915f6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$TenzingDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$TrollNPC.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$TrollNPC.class new file mode 100644 index 000000000..86d6775a1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$TrollNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningCutscene$1.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningCutscene$1.class new file mode 100644 index 000000000..00651ace1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningCutscene.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningCutscene.class new file mode 100644 index 000000000..c897068df Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningZone.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningZone.class new file mode 100644 index 000000000..376f82c71 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WarningZone.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WoundedSoldier.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WoundedSoldier.class new file mode 100644 index 000000000..452e31bc3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin$WoundedSoldier.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin.class new file mode 100644 index 000000000..8bf83e9c0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TrollheimPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TzhaarCityPlugin$TzhaarDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/TzhaarCityPlugin$TzhaarDialogue.class new file mode 100644 index 000000000..235010b44 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TzhaarCityPlugin$TzhaarDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/TzhaarCityPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/TzhaarCityPlugin.class new file mode 100644 index 000000000..aaf3b5136 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/TzhaarCityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin$KnockatDoorDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin$KnockatDoorDialogue$1.class new file mode 100644 index 000000000..b3a650879 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin$KnockatDoorDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin$KnockatDoorDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin$KnockatDoorDialogue.class new file mode 100644 index 000000000..a2fa16bba Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin$KnockatDoorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin.class new file mode 100644 index 000000000..4420f24e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/VarrockNodePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WildernessPlugin$KBDPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/WildernessPlugin$KBDPlugin.class new file mode 100644 index 000000000..eccb0e7a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WildernessPlugin$KBDPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WildernessPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/WildernessPlugin.class new file mode 100644 index 000000000..59d4bb2af Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WildernessPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$AuburyDialoguePlugin.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$AuburyDialoguePlugin.class new file mode 100644 index 000000000..56585e943 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$AuburyDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$SedridorDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$SedridorDialogue$1.class new file mode 100644 index 000000000..2e00e8691 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$SedridorDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$SedridorDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$SedridorDialogue.class new file mode 100644 index 000000000..b41fe1af5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$SedridorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue$1.class new file mode 100644 index 000000000..477efebb6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue$SplitBark.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue$SplitBark.class new file mode 100644 index 000000000..1f16c4def Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue$SplitBark.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue.class new file mode 100644 index 000000000..fc20abce9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardGrayzagDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardGrayzagDialogue.class new file mode 100644 index 000000000..7fb0a4250 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardGrayzagDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardMisgogDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardMisgogDialogue$1.class new file mode 100644 index 000000000..487c6314f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardMisgogDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardMisgogDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardMisgogDialogue.class new file mode 100644 index 000000000..b4705ed78 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardMisgogDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardTowerDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardTowerDialogue.class new file mode 100644 index 000000000..88caf12e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardTowerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardtowerWizardNPC.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardtowerWizardNPC.class new file mode 100644 index 000000000..2aec32c3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin$WizardtowerWizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin.class new file mode 100644 index 000000000..823a028e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/WizardTowerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/ZanarisPlugin$MagicDoorDialogue.class b/CompiledServer/production/Server/plugin/interaction/city/ZanarisPlugin$MagicDoorDialogue.class new file mode 100644 index 000000000..bc2738fe4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/ZanarisPlugin$MagicDoorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/city/ZanarisPlugin.class b/CompiledServer/production/Server/plugin/interaction/city/ZanarisPlugin.class new file mode 100644 index 000000000..6b44d2050 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/city/ZanarisPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/AgilityTicketInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/AgilityTicketInterface.class new file mode 100644 index 000000000..27a10d1a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/AgilityTicketInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/AutocastSelectPlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/AutocastSelectPlugin.class new file mode 100644 index 000000000..82c69573c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/AutocastSelectPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/BankPinInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/BankPinInterface.class new file mode 100644 index 000000000..320e417b8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/BankPinInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface$1.class new file mode 100644 index 000000000..70b382fca Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface$Bolts.class b/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface$Bolts.class new file mode 100644 index 000000000..c9f32a98d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface$Bolts.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface.class new file mode 100644 index 000000000..b726f9227 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/BoltEnchantingInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/CanoeInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/CanoeInterfacePlugin.class new file mode 100644 index 000000000..048ec3d4c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/CanoeInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/CharacterDesignInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/CharacterDesignInterface.class new file mode 100644 index 000000000..739225717 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/CharacterDesignInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ClanInterfacePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/inter/ClanInterfacePlugin$1.class new file mode 100644 index 000000000..7d6b045d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ClanInterfacePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ClanInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/ClanInterfacePlugin.class new file mode 100644 index 000000000..d60061a82 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ClanInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface$1.class new file mode 100644 index 000000000..8372bacc3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface$2.class b/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface$2.class new file mode 100644 index 000000000..29aeecd91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface.class new file mode 100644 index 000000000..3f0bba5d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/CombatTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/CrystalKeyChestPlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/CrystalKeyChestPlugin.class new file mode 100644 index 000000000..9db6fde3a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/CrystalKeyChestPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/DeathInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/DeathInterfacePlugin.class new file mode 100644 index 000000000..edb04cc2f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/DeathInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EllisDialogue.class b/CompiledServer/production/Server/plugin/interaction/inter/EllisDialogue.class new file mode 100644 index 000000000..156e1d89a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EllisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EmoteTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/EmoteTabInterface.class new file mode 100644 index 000000000..d65b855db Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EmoteTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$1.class new file mode 100644 index 000000000..2d69f1073 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$2.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$2.class new file mode 100644 index 000000000..dd3136d75 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$3.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$3.class new file mode 100644 index 000000000..ffe344633 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$4.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$4.class new file mode 100644 index 000000000..343c650ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$4.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$5.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$5.class new file mode 100644 index 000000000..f2a1212db Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$5.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$6.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$6.class new file mode 100644 index 000000000..bca9ddf80 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface$6.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface.class new file mode 100644 index 000000000..8bfd97479 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/EquipmentInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class new file mode 100644 index 000000000..97af6e168 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ExperienceLampInterface$SkillInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ExperienceLampInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/ExperienceLampInterface.class new file mode 100644 index 000000000..effb1d5e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ExperienceLampInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface$FancyDressOwnerDialogue.class b/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface$FancyDressOwnerDialogue.class new file mode 100644 index 000000000..06fa337e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface$FancyDressOwnerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface$FurClothing.class b/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface$FurClothing.class new file mode 100644 index 000000000..a8128251e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface$FurClothing.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface.class new file mode 100644 index 000000000..5886b0792 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/FurClothingInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GameInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/GameInterface.class new file mode 100644 index 000000000..29ba67819 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GameInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface$1.class new file mode 100644 index 000000000..6f0aefbed Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface$2.class b/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface$2.class new file mode 100644 index 000000000..5e08e87dc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface.class new file mode 100644 index 000000000..c621c3943 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GlassInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GliderInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/GliderInterface.class new file mode 100644 index 000000000..cba40ce4f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GliderInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$1.class new file mode 100644 index 000000000..fb99b3cf0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$2.class b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$2.class new file mode 100644 index 000000000..dcba1c130 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$3.class b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$3.class new file mode 100644 index 000000000..b95b0cc98 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface.class new file mode 100644 index 000000000..2e68535db Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GrandExchangeInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/GravePurchaseInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/GravePurchaseInterface.class new file mode 100644 index 000000000..11de1e6e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/GravePurchaseInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/HairInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/HairInterfacePlugin.class new file mode 100644 index 000000000..6a1e4436d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/HairInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/JewelleryInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/JewelleryInterface$1.class new file mode 100644 index 000000000..f6f312442 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/JewelleryInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/JewelleryInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/JewelleryInterface.class new file mode 100644 index 000000000..c80a5f70c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/JewelleryInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftInterface$1.class new file mode 100644 index 000000000..42a7966ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftInterface.class new file mode 100644 index 000000000..4471728b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftPlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftPlugin.class new file mode 100644 index 000000000..eb914a991 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/LeatherCraftPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/LoginInterfacePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/inter/LoginInterfacePlugin$1.class new file mode 100644 index 000000000..f259aec01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/LoginInterfacePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/LoginInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/LoginInterfacePlugin.class new file mode 100644 index 000000000..7d1eb4419 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/LoginInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/LogoutInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/LogoutInterface.class new file mode 100644 index 000000000..e2f8aa07f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/LogoutInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/MagicBookInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/MagicBookInterface.class new file mode 100644 index 000000000..f849dacb9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/MagicBookInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/MakeOverInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/MakeOverInterface.class new file mode 100644 index 000000000..655a3b1c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/MakeOverInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/MusicTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/MusicTabInterface.class new file mode 100644 index 000000000..382299370 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/MusicTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$1.class new file mode 100644 index 000000000..7cbe8a1d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$2.class b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$2.class new file mode 100644 index 000000000..6c954cda3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$ViewCloseEvent.class b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$ViewCloseEvent.class new file mode 100644 index 000000000..8900c33a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface$ViewCloseEvent.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface.class new file mode 100644 index 000000000..3f0610bed Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/OrbViewingInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/PlayerExamineInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/PlayerExamineInterfacePlugin.class new file mode 100644 index 000000000..9f2c8c681 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/PlayerExamineInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/PrayerTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/PrayerTabInterface.class new file mode 100644 index 000000000..9316db755 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/PrayerTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/PuppyInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/PuppyInterfacePlugin.class new file mode 100644 index 000000000..161ad92c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/PuppyInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/QuestTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/QuestTabInterface.class new file mode 100644 index 000000000..fcff07464 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/QuestTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/RequestAssistInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/RequestAssistInterface.class new file mode 100644 index 000000000..fb10383cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/RequestAssistInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface$1.class new file mode 100644 index 000000000..32283dfc2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface$Plank.class b/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface$Plank.class new file mode 100644 index 000000000..9fd45d877 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface$Plank.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface.class new file mode 100644 index 000000000..74f76f9bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SawmillPlankInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SettingTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SettingTabInterface.class new file mode 100644 index 000000000..d2826cf72 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SettingTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ShipCharterInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/ShipCharterInterface.class new file mode 100644 index 000000000..df667d9e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ShipCharterInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ShoppingPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/inter/ShoppingPlugin$1.class new file mode 100644 index 000000000..5ffca4d4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ShoppingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ShoppingPlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/ShoppingPlugin.class new file mode 100644 index 000000000..c9e310cf8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ShoppingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface$1.class new file mode 100644 index 000000000..fbf975984 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface$2.class b/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface$2.class new file mode 100644 index 000000000..4749eeaab Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface.class new file mode 100644 index 000000000..ff0aa61d2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SilverInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SkillInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SkillInterface.class new file mode 100644 index 000000000..b1df730a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SkillInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface$1.class new file mode 100644 index 000000000..51cbc7015 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface$SkillConfig.class b/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface$SkillConfig.class new file mode 100644 index 000000000..57a142ee8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface$SkillConfig.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface.class new file mode 100644 index 000000000..908b7ec63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SkillTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface$1.class new file mode 100644 index 000000000..3f89cddc7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface$BarButton.class b/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface$BarButton.class new file mode 100644 index 000000000..77cf0ec50 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface$BarButton.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface.class new file mode 100644 index 000000000..ec78dd2ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SmeltingInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SmithingInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/SmithingInterface$1.class new file mode 100644 index 000000000..8af19c0b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SmithingInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SmithingInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SmithingInterface.class new file mode 100644 index 000000000..59cc0fa24 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SmithingInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SpinningInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/SpinningInterface$1.class new file mode 100644 index 000000000..dfde8f123 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SpinningInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/SpinningInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/SpinningInterface.class new file mode 100644 index 000000000..b2bada2bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/SpinningInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/TanningInterface$1.class b/CompiledServer/production/Server/plugin/interaction/inter/TanningInterface$1.class new file mode 100644 index 000000000..fe6d3d77a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/TanningInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/TanningInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/TanningInterface.class new file mode 100644 index 000000000..c65e96824 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/TanningInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/ThessaliaInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/ThessaliaInterface.class new file mode 100644 index 000000000..e61669f57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/ThessaliaInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin$1.class new file mode 100644 index 000000000..d56bea444 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin$2.class b/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin$2.class new file mode 100644 index 000000000..7612a87aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin.class new file mode 100644 index 000000000..54d538d61 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/TradeInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/inter/WorldMapInterface.class b/CompiledServer/production/Server/plugin/interaction/inter/WorldMapInterface.class new file mode 100644 index 000000000..842089588 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/inter/WorldMapInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/BirdNestPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/BirdNestPlugin.class new file mode 100644 index 000000000..b0ddb4075 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/BirdNestPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/BookreadOption.class b/CompiledServer/production/Server/plugin/interaction/item/BookreadOption.class new file mode 100644 index 000000000..72f00566a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/BookreadOption.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/BraceletOfClayPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/BraceletOfClayPlugin.class new file mode 100644 index 000000000..4cae4ce9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/BraceletOfClayPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/CasketPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/CasketPlugin.class new file mode 100644 index 000000000..affe7d12d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/CasketPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/ConsumableOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/ConsumableOptionPlugin.class new file mode 100644 index 000000000..1b94f484b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/ConsumableOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/DiangoItemPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/DiangoItemPlugin$1.class new file mode 100644 index 000000000..79e736121 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/DiangoItemPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/DiangoItemPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/DiangoItemPlugin.class new file mode 100644 index 000000000..191b95007 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/DiangoItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin$1.class new file mode 100644 index 000000000..1cf11fb4c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin$DFSItemPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin$DFSItemPlugin.class new file mode 100644 index 000000000..e2b19f4b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin$DFSItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin.class new file mode 100644 index 000000000..b8ce57957 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/DragonfireShieldPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/DustHandPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/DustHandPlugin.class new file mode 100644 index 000000000..5e15d82b7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/DustHandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/EmptyOptionPlugin$VialConsumable.class b/CompiledServer/production/Server/plugin/interaction/item/EmptyOptionPlugin$VialConsumable.class new file mode 100644 index 000000000..c0bab4418 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/EmptyOptionPlugin$VialConsumable.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/EmptyOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/EmptyOptionPlugin.class new file mode 100644 index 000000000..316be8794 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/EmptyOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/EnchantedGemPlugin$JewelleryDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/EnchantedGemPlugin$JewelleryDialogue.class new file mode 100644 index 000000000..8e97cd591 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/EnchantedGemPlugin$JewelleryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/EnchantedGemPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/EnchantedGemPlugin.class new file mode 100644 index 000000000..37ac81567 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/EnchantedGemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/EnchantedJewelleryPlugin$JewelleryDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/EnchantedJewelleryPlugin$JewelleryDialogue.class new file mode 100644 index 000000000..7f782d01a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/EnchantedJewelleryPlugin$JewelleryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/EnchantedJewelleryPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/EnchantedJewelleryPlugin.class new file mode 100644 index 000000000..2e94ef028 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/EnchantedJewelleryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/ExplorersRingPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/ExplorersRingPlugin.class new file mode 100644 index 000000000..30768b67c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/ExplorersRingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/ExtinguishLightPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/ExtinguishLightPlugin.class new file mode 100644 index 000000000..2f8cddd7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/ExtinguishLightPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GnomeCopterPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/GnomeCopterPlugin.class new file mode 100644 index 000000000..c2c536186 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GnomeCopterPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GnomecopterTicket.class b/CompiledServer/production/Server/plugin/interaction/item/GnomecopterTicket.class new file mode 100644 index 000000000..b9a362306 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GnomecopterTicket.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookDialogue$1.class new file mode 100644 index 000000000..03b2d36f6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookDialogue.class new file mode 100644 index 000000000..9910268e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookItem.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookItem.class new file mode 100644 index 000000000..1fbe59174 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$GodBookItem.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$PageHandler.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$PageHandler.class new file mode 100644 index 000000000..d6c1f5328 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$PageHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$SymbolBlessHandler$1.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$SymbolBlessHandler$1.class new file mode 100644 index 000000000..6e3e1b9c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$SymbolBlessHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$SymbolBlessHandler.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$SymbolBlessHandler.class new file mode 100644 index 000000000..bfcfc84c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin$SymbolBlessHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin.class new file mode 100644 index 000000000..f43264865 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodBookPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/GodswordDismantlePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/GodswordDismantlePlugin.class new file mode 100644 index 000000000..9653092a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/GodswordDismantlePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/HerbBoxPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/HerbBoxPlugin.class new file mode 100644 index 000000000..3ef07e61b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/HerbBoxPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class new file mode 100644 index 000000000..87ddb2a10 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/KeldagrimVotingBond$keldagrimVotingBondDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/KeldagrimVotingBond.class b/CompiledServer/production/Server/plugin/interaction/item/KeldagrimVotingBond.class new file mode 100644 index 000000000..47b6192c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/KeldagrimVotingBond.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/LampPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/LampPlugin.class new file mode 100644 index 000000000..5809c7600 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/LampPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin$1.class new file mode 100644 index 000000000..9e0f26d78 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin$MorphInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin$MorphInterfacePlugin.class new file mode 100644 index 000000000..27c22abd2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin$MorphInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin.class new file mode 100644 index 000000000..5cbceccc4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/MorphItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/NewComerMapPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/NewComerMapPlugin.class new file mode 100644 index 000000000..6a1f92fd3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/NewComerMapPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/NewsPaperPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/NewsPaperPlugin.class new file mode 100644 index 000000000..7bd5d8b12 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/NewsPaperPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/OysterPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/OysterPlugin.class new file mode 100644 index 000000000..8a2335cde Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/OysterPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/PickupPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/PickupPlugin.class new file mode 100644 index 000000000..def6a6f7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/PickupPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/QuestCapePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/QuestCapePlugin.class new file mode 100644 index 000000000..c45c35397 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/QuestCapePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RingUnchargePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/RingUnchargePlugin.class new file mode 100644 index 000000000..ab968a578 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RingUnchargePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$1$1.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$1$1.class new file mode 100644 index 000000000..c1c8801ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$1.class new file mode 100644 index 000000000..f7135229b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$2$1.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$2$1.class new file mode 100644 index 000000000..f9e4dad54 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$2.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$2.class new file mode 100644 index 000000000..b4e0a9dec Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$3.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$3.class new file mode 100644 index 000000000..353a77f21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$4.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$4.class new file mode 100644 index 000000000..217f59309 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue$4.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue.class new file mode 100644 index 000000000..9912ac523 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin$RottenPotatoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin.class new file mode 100644 index 000000000..a1787e9f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RottenPotatoPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/RunePackPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/RunePackPlugin.class new file mode 100644 index 000000000..7842f9fc6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/RunePackPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SilverSicklePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/SilverSicklePlugin.class new file mode 100644 index 000000000..39f68184b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SilverSicklePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin$FishingCapePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin$FishingCapePlugin.class new file mode 100644 index 000000000..f44d2774f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin$FishingCapePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin$SkillcapeOperateDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin$SkillcapeOperateDialogue.class new file mode 100644 index 000000000..a1338c876 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin$SkillcapeOperateDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin.class new file mode 100644 index 000000000..b9760ac20 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SkillcapeHandlerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SkullDropPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/SkullDropPlugin.class new file mode 100644 index 000000000..f6133d661 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SkullDropPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SkullSceptreOption.class b/CompiledServer/production/Server/plugin/interaction/item/SkullSceptreOption.class new file mode 100644 index 000000000..873154df5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SkullSceptreOption.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/SpadeDigOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/SpadeDigOptionPlugin.class new file mode 100644 index 000000000..e4075de93 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/SpadeDigOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/StarterPackPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/StarterPackPlugin.class new file mode 100644 index 000000000..bf9c3ea22 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/StarterPackPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/TeleTabsOptionPlugin$TeleTabs.class b/CompiledServer/production/Server/plugin/interaction/item/TeleTabsOptionPlugin$TeleTabs.class new file mode 100644 index 000000000..00422ee47 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/TeleTabsOptionPlugin$TeleTabs.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/TeleTabsOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/TeleTabsOptionPlugin.class new file mode 100644 index 000000000..1ca1566b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/TeleTabsOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/TeleportCrystalPlugin$TeleportCrystalDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/TeleportCrystalPlugin$TeleportCrystalDialogue.class new file mode 100644 index 000000000..09b9c3b06 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/TeleportCrystalPlugin$TeleportCrystalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/TeleportCrystalPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/TeleportCrystalPlugin.class new file mode 100644 index 000000000..8645e2aa4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/TeleportCrystalPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/ToyHorsePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/ToyHorsePlugin.class new file mode 100644 index 000000000..83bfc0ecc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/ToyHorsePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/CapeDyeingPlugin$Cape.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/CapeDyeingPlugin$Cape.class new file mode 100644 index 000000000..81bddd231 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/CapeDyeingPlugin$Cape.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/CapeDyeingPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/CapeDyeingPlugin.class new file mode 100644 index 000000000..a73ebc9bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/CapeDyeingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/ChestKeyPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/ChestKeyPlugin.class new file mode 100644 index 000000000..cd9a0c42b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/ChestKeyPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/CrystalKeyCreatePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/CrystalKeyCreatePlugin.class new file mode 100644 index 000000000..b02dc0b8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/CrystalKeyCreatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$1.class new file mode 100644 index 000000000..31ba581e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$DarkBowCleanPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$DarkBowCleanPlugin$1.class new file mode 100644 index 000000000..37eabfe5f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$DarkBowCleanPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$DarkBowCleanPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$DarkBowCleanPlugin.class new file mode 100644 index 000000000..8613bf4c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin$DarkBowCleanPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin.class new file mode 100644 index 000000000..1a8dc0576 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/DarkBowDyePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/EnchantSpell.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/EnchantSpell.class new file mode 100644 index 000000000..28c8cb0c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/EnchantSpell.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FirelighterPlugin$FireLighter.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FirelighterPlugin$FireLighter.class new file mode 100644 index 000000000..d47457759 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FirelighterPlugin$FireLighter.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FirelighterPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FirelighterPlugin.class new file mode 100644 index 000000000..e4c5ca0d7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FirelighterPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FishfoodPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FishfoodPlugin.class new file mode 100644 index 000000000..6916806c1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FishfoodPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$Fruit.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$Fruit.class new file mode 100644 index 000000000..114fe1622 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$Fruit.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$FruitCuttingDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$FruitCuttingDialogue$1.class new file mode 100644 index 000000000..796dd19a0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$FruitCuttingDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$FruitCuttingDialogue.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$FruitCuttingDialogue.class new file mode 100644 index 000000000..002d17141 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin$FruitCuttingDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin.class new file mode 100644 index 000000000..5d2961860 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/FruitCuttingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/GodswordHiltAttachPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/GodswordHiltAttachPlugin.class new file mode 100644 index 000000000..c083ec7a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/GodswordHiltAttachPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$1.class new file mode 100644 index 000000000..09d20ee0f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$GraniteMaulRevertHandler$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$GraniteMaulRevertHandler$1.class new file mode 100644 index 000000000..37deb6ce5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$GraniteMaulRevertHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$GraniteMaulRevertHandler.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$GraniteMaulRevertHandler.class new file mode 100644 index 000000000..cb29b8f77 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin$GraniteMaulRevertHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin.class new file mode 100644 index 000000000..f3216e64a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteMaulPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteSplittingPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteSplittingPlugin.class new file mode 100644 index 000000000..8ae37d9d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/GraniteSplittingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/ImpJarCreatePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/ImpJarCreatePlugin.class new file mode 100644 index 000000000..b59059221 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/ImpJarCreatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/KaramjanSilkPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/KaramjanSilkPlugin.class new file mode 100644 index 000000000..cf635acd2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/KaramjanSilkPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/LavaScalePlugin$AntifireMakePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/LavaScalePlugin$AntifireMakePlugin.class new file mode 100644 index 000000000..a1b82c919 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/LavaScalePlugin$AntifireMakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/LavaScalePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/LavaScalePlugin.class new file mode 100644 index 000000000..828c2be8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/LavaScalePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/LightSourcePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/LightSourcePlugin.class new file mode 100644 index 000000000..1b0651045 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/LightSourcePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/MakeGlassInterfacePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/MakeGlassInterfacePlugin$1.class new file mode 100644 index 000000000..beb789b8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/MakeGlassInterfacePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/MakeGlassInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/MakeGlassInterfacePlugin.class new file mode 100644 index 000000000..68fba3d23 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/MakeGlassInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonRemovePlugin$PoisonedWeapon.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonRemovePlugin$PoisonedWeapon.class new file mode 100644 index 000000000..74a52025d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonRemovePlugin$PoisonedWeapon.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonRemovePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonRemovePlugin.class new file mode 100644 index 000000000..e09a8c977 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonRemovePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonWeaponPlugin$PoisonedWeapon.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonWeaponPlugin$PoisonedWeapon.class new file mode 100644 index 000000000..dfb113126 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonWeaponPlugin$PoisonedWeapon.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonWeaponPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonWeaponPlugin.class new file mode 100644 index 000000000..93b268f4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/PoisonWeaponPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/SeasonedSardinePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/SeasonedSardinePlugin.class new file mode 100644 index 000000000..a558592e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/SeasonedSardinePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/SkullSceptrePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/SkullSceptrePlugin.class new file mode 100644 index 000000000..f46c1608b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/SkullSceptrePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin$1$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin$1$1.class new file mode 100644 index 000000000..fe0140afc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin$1.class new file mode 100644 index 000000000..69e90e054 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin.class new file mode 100644 index 000000000..832f95370 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/SoftclayPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withitem/WaterSkinPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withitem/WaterSkinPlugin.class new file mode 100644 index 000000000..10a450ab3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withitem/WaterSkinPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withnpc/GertrudeCatUsePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withnpc/GertrudeCatUsePlugin$1.class new file mode 100644 index 000000000..02ae58c68 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withnpc/GertrudeCatUsePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withnpc/GertrudeCatUsePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withnpc/GertrudeCatUsePlugin.class new file mode 100644 index 000000000..8a7f69bb5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withnpc/GertrudeCatUsePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withnpc/LadyKeliRopePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withnpc/LadyKeliRopePlugin.class new file mode 100644 index 000000000..6dadf8525 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withnpc/LadyKeliRopePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withnpc/NeedleCowPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withnpc/NeedleCowPlugin.class new file mode 100644 index 000000000..0d97e1f9a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withnpc/NeedleCowPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withnpc/StrayDogBonesPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withnpc/StrayDogBonesPlugin.class new file mode 100644 index 000000000..4d255eff3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withnpc/StrayDogBonesPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/BankUnnotePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/BankUnnotePlugin.class new file mode 100644 index 000000000..0ab0c300c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/BankUnnotePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/BurnMeatPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/BurnMeatPlugin.class new file mode 100644 index 000000000..4b7f668c3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/BurnMeatPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/CauldronOfThunder.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/CauldronOfThunder.class new file mode 100644 index 000000000..3286a76c0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/CauldronOfThunder.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/DragonPlatebody.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/DragonPlatebody.class new file mode 100644 index 000000000..d51ad7ece Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/DragonPlatebody.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/EctophialFillPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/EctophialFillPlugin$1.class new file mode 100644 index 000000000..78bf81697 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/EctophialFillPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/EctophialFillPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/EctophialFillPlugin.class new file mode 100644 index 000000000..5255c687c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/EctophialFillPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/GWDEntranceRopeUsage.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/GWDEntranceRopeUsage.class new file mode 100644 index 000000000..c434bed42 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/GWDEntranceRopeUsage.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/GildedAltarPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/GildedAltarPlugin.class new file mode 100644 index 000000000..ff5fb6515 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/GildedAltarPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/IncubatorPlugin$IncubatorEggHandler.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/IncubatorPlugin$IncubatorEggHandler.class new file mode 100644 index 000000000..da72594b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/IncubatorPlugin$IncubatorEggHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/IncubatorPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/IncubatorPlugin.class new file mode 100644 index 000000000..af16035d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/IncubatorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/KaramajaBananaCrate.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/KaramajaBananaCrate.class new file mode 100644 index 000000000..236a19a24 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/KaramajaBananaCrate.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/PoisonFountainPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/PoisonFountainPlugin$1.class new file mode 100644 index 000000000..d8c0feb4f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/PoisonFountainPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/PoisonFountainPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/PoisonFountainPlugin.class new file mode 100644 index 000000000..a0e5dc41a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/PoisonFountainPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/PriestInPerilUsePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/PriestInPerilUsePlugin.class new file mode 100644 index 000000000..8a3ad976f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/PriestInPerilUsePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/RestlessGhostSkull.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/RestlessGhostSkull.class new file mode 100644 index 000000000..6b5da0110 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/RestlessGhostSkull.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SandSourcePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SandSourcePlugin$1.class new file mode 100644 index 000000000..ba998cc41 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SandSourcePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SandSourcePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SandSourcePlugin.class new file mode 100644 index 000000000..21c717681 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SandSourcePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SapCollectPlugin$SapEmptyPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SapCollectPlugin$SapEmptyPlugin.class new file mode 100644 index 000000000..bb7bf23c1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SapCollectPlugin$SapEmptyPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SapCollectPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SapCollectPlugin.class new file mode 100644 index 000000000..84c3b5510 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SapCollectPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SmithingPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SmithingPlugin$1.class new file mode 100644 index 000000000..3cfd792e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SmithingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SmithingPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SmithingPlugin.class new file mode 100644 index 000000000..6b2bb556d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SmithingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin$SpiritShieldMakePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin$SpiritShieldMakePlugin$1.class new file mode 100644 index 000000000..e405ea6e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin$SpiritShieldMakePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin$SpiritShieldMakePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin$SpiritShieldMakePlugin.class new file mode 100644 index 000000000..0bc39df44 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin$SpiritShieldMakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin.class new file mode 100644 index 000000000..1f5515715 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SpiritShieldBlessPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/SwampHoleRopePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/SwampHoleRopePlugin.class new file mode 100644 index 000000000..e69dd98bc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/SwampHoleRopePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/TutorialItemHandler$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/TutorialItemHandler$1.class new file mode 100644 index 000000000..957fa90b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/TutorialItemHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/TutorialItemHandler.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/TutorialItemHandler.class new file mode 100644 index 000000000..195d39219 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/TutorialItemHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin$WaterRecipient$1.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin$WaterRecipient$1.class new file mode 100644 index 000000000..17984446c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin$WaterRecipient$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin$WaterRecipient.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin$WaterRecipient.class new file mode 100644 index 000000000..1b8e9b34c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin$WaterRecipient.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin.class b/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin.class new file mode 100644 index 000000000..f5a18cea0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withobject/WaterSourcePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withplayer/ChristmasCrackerUsage.class b/CompiledServer/production/Server/plugin/interaction/item/withplayer/ChristmasCrackerUsage.class new file mode 100644 index 000000000..890ca4a6c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withplayer/ChristmasCrackerUsage.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/item/withplayer/FieldRationUsage.class b/CompiledServer/production/Server/plugin/interaction/item/withplayer/FieldRationUsage.class new file mode 100644 index 000000000..5c3803903 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/item/withplayer/FieldRationUsage.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/AlKahridLeafletPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/AlKahridLeafletPlugin.class new file mode 100644 index 000000000..707338940 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/AlKahridLeafletPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/AlkharidHealPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/AlkharidHealPlugin.class new file mode 100644 index 000000000..0ca2304f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/AlkharidHealPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$1.class new file mode 100644 index 000000000..c1e9f4260 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlDialogue$1.class new file mode 100644 index 000000000..2e59c80a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlDialogue.class new file mode 100644 index 000000000..d6b4ef87e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$1.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$1.class new file mode 100644 index 000000000..d6e012c16 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$10.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$10.class new file mode 100644 index 000000000..34a05507a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$10.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$2.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$2.class new file mode 100644 index 000000000..021b544a5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$3.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$3.class new file mode 100644 index 000000000..8b65c7de6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$4.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$4.class new file mode 100644 index 000000000..59ee69e5c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$4.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$5.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$5.class new file mode 100644 index 000000000..9f2f47145 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$5.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$6.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$6.class new file mode 100644 index 000000000..998bca458 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$6.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$7.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$7.class new file mode 100644 index 000000000..2c93aa991 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$7.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$8.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$8.class new file mode 100644 index 000000000..dead06613 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$8.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$9$1.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$9$1.class new file mode 100644 index 000000000..2f16a3a80 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$9$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$9.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$9.class new file mode 100644 index 000000000..10fb7185b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType$9.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType.class new file mode 100644 index 000000000..3bb0b35f8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin$BarcrawlType.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin.class new file mode 100644 index 000000000..6e52a0c53 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BarcrawlPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BogrogPlugin$BogrogDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/BogrogPlugin$BogrogDialogue.class new file mode 100644 index 000000000..f7a416120 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BogrogPlugin$BogrogDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BogrogPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/BogrogPlugin.class new file mode 100644 index 000000000..30caf0653 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BogrogPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeOptionPlugin.class new file mode 100644 index 000000000..7dbde04ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC$1.class b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC$1.class new file mode 100644 index 000000000..4b11e0b5d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC$2.class b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC$2.class new file mode 100644 index 000000000..6d8ece56d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC.class b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC.class new file mode 100644 index 000000000..2978bbcf7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/BurthorpeTrainNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/CanafisWereWolfPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/npc/CanafisWereWolfPlugin$1.class new file mode 100644 index 000000000..06452b1cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/CanafisWereWolfPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/CanafisWereWolfPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/CanafisWereWolfPlugin.class new file mode 100644 index 000000000..a912cd3aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/CanafisWereWolfPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/CustomsOfficerPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/CustomsOfficerPlugin.class new file mode 100644 index 000000000..464f9e895 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/CustomsOfficerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/DoomsayerTogglePlugin$WarningMessagePlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/DoomsayerTogglePlugin$WarningMessagePlugin.class new file mode 100644 index 000000000..ff35c645b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/DoomsayerTogglePlugin$WarningMessagePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/DoomsayerTogglePlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/DoomsayerTogglePlugin.class new file mode 100644 index 000000000..1c135e804 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/DoomsayerTogglePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/GliderPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/GliderPlugin.class new file mode 100644 index 000000000..456d42cba Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/GliderPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/HairCutPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/HairCutPlugin.class new file mode 100644 index 000000000..06255bdfb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/HairCutPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/NPCDisturbPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/NPCDisturbPlugin.class new file mode 100644 index 000000000..ae00bcdc0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/NPCDisturbPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/NPCTalkPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/NPCTalkPlugin.class new file mode 100644 index 000000000..a28416ee3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/NPCTalkPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/NPCTradePlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/NPCTradePlugin.class new file mode 100644 index 000000000..bd4994130 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/NPCTradePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$1.class b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$1.class new file mode 100644 index 000000000..e402ac93f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$ProbitaDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$ProbitaDialogue.class new file mode 100644 index 000000000..1720945fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$ProbitaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$ProbitaUseWithHandler.class b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$ProbitaUseWithHandler.class new file mode 100644 index 000000000..704604fe8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC$ProbitaUseWithHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC.class b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC.class new file mode 100644 index 000000000..6ec3c9c88 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ProbitaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/RoavarDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/RoavarDialogue.class new file mode 100644 index 000000000..ad7af4e7a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/RoavarDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/RoavarOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/RoavarOptionPlugin.class new file mode 100644 index 000000000..108dba0fb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/RoavarOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/RunescapeInstructorPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/RunescapeInstructorPlugin.class new file mode 100644 index 000000000..1c52aaff5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/RunescapeInstructorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SanibochPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/SanibochPlugin.class new file mode 100644 index 000000000..903ad07ae Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SanibochPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SawmillOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/SawmillOptionPlugin.class new file mode 100644 index 000000000..df6b37698 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SawmillOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SeamanPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/SeamanPlugin.class new file mode 100644 index 000000000..5b19b1980 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SeamanPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ShantayOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ShantayOptionPlugin.class new file mode 100644 index 000000000..c98788443 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ShantayOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SheepShearPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/npc/SheepShearPlugin$1.class new file mode 100644 index 000000000..260b97424 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SheepShearPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SheepShearPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/SheepShearPlugin.class new file mode 100644 index 000000000..ae888efa2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SheepShearPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ShipCharterNPCPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ShipCharterNPCPlugin.class new file mode 100644 index 000000000..acd4cfdd2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ShipCharterNPCPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ShooAwayStrayDogPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ShooAwayStrayDogPlugin.class new file mode 100644 index 000000000..229264f03 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ShooAwayStrayDogPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SpiritGraahkOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/SpiritGraahkOptionPlugin.class new file mode 100644 index 000000000..bb7a9efe9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SpiritGraahkOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/SpiritKyattOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/SpiritKyattOptionPlugin.class new file mode 100644 index 000000000..e2fa379aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/SpiritKyattOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/TanningNPC.class b/CompiledServer/production/Server/plugin/interaction/npc/TanningNPC.class new file mode 100644 index 000000000..a34d03795 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/TanningNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ThessaliaPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ThessaliaPlugin.class new file mode 100644 index 000000000..7548da9d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ThessaliaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffDialogue.class new file mode 100644 index 000000000..e460d1be5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffStaveDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffStaveDialogue$1.class new file mode 100644 index 000000000..85df1d423 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffStaveDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffStaveDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffStaveDialogue.class new file mode 100644 index 000000000..7c7a08f59 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin$ZaffStaveDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin.class new file mode 100644 index 000000000..4f2cce83c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ZaffPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ZahurOptionPlugin$ZahurDialoguePlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ZahurOptionPlugin$ZahurDialoguePlugin.class new file mode 100644 index 000000000..952371dfb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ZahurOptionPlugin$ZahurDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/ZahurOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/ZahurOptionPlugin.class new file mode 100644 index 000000000..da1006018 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/ZahurOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue$BarrowsEquipment$BarrowsFullEquipment.class b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue$BarrowsEquipment$BarrowsFullEquipment.class new file mode 100644 index 000000000..75ebf3ed0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue$BarrowsEquipment$BarrowsFullEquipment.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue$BarrowsEquipment.class b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue$BarrowsEquipment.class new file mode 100644 index 000000000..8323a4c1b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue$BarrowsEquipment.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue.class new file mode 100644 index 000000000..cc47821e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/bob/BobRepairItem.class b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobRepairItem.class new file mode 100644 index 000000000..4cb17fdc9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/bob/BobRepairItem.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticeDialogue$1.class b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticeDialogue$1.class new file mode 100644 index 000000000..01b84b4f9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticeDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticeDialogue.class b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticeDialogue.class new file mode 100644 index 000000000..0a6263127 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticePlugin$SorceressStairs.class b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticePlugin$SorceressStairs.class new file mode 100644 index 000000000..c2eb78625 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticePlugin$SorceressStairs.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticePlugin.class b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticePlugin.class new file mode 100644 index 000000000..181e8fd57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/npc/sorceress_app/SorceressApprenticePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$1.class new file mode 100644 index 000000000..31579232f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface$1.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface$1.class new file mode 100644 index 000000000..3330a0270 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface$2.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface$2.class new file mode 100644 index 000000000..0828b5ac8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface.class new file mode 100644 index 000000000..eec321ce8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankDepositInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankNPC.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankNPC.class new file mode 100644 index 000000000..a91035c82 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankNPCPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankNPCPlugin.class new file mode 100644 index 000000000..c67641b5e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankNPCPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankerDialogue.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankerDialogue.class new file mode 100644 index 000000000..b332965c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$1.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$1.class new file mode 100644 index 000000000..5b0d57895 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$2.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$2.class new file mode 100644 index 000000000..54e59f7e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$3.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$3.class new file mode 100644 index 000000000..30e10a937 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$4.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$4.class new file mode 100644 index 000000000..4f5c0315e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface$4.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface.class new file mode 100644 index 000000000..2682e777d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin$BankingInterface.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin.class new file mode 100644 index 000000000..7945e6f73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BankingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BarrowsBoatPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/BarrowsBoatPlugin$1.class new file mode 100644 index 000000000..ce5b489bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BarrowsBoatPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BarrowsBoatPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/BarrowsBoatPlugin.class new file mode 100644 index 000000000..51e8401d1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BarrowsBoatPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BarrowsTunnelShortcut.class b/CompiledServer/production/Server/plugin/interaction/object/BarrowsTunnelShortcut.class new file mode 100644 index 000000000..47318a9a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BarrowsTunnelShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BrassKeyDoorPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/BrassKeyDoorPlugin.class new file mode 100644 index 000000000..2c6e39b58 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BrassKeyDoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/BuyCrateOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/BuyCrateOptionPlugin.class new file mode 100644 index 000000000..aa619e920 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/BuyCrateOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CanoeOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/CanoeOptionPlugin.class new file mode 100644 index 000000000..bbedbad7d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CanoeOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CavadaBerriesPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/CavadaBerriesPlugin.class new file mode 100644 index 000000000..56a9427fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CavadaBerriesPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ChampionsArenaPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ChampionsArenaPlugin.class new file mode 100644 index 000000000..409a13003 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ChampionsArenaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ChampionsGuildDoor.class b/CompiledServer/production/Server/plugin/interaction/object/ChampionsGuildDoor.class new file mode 100644 index 000000000..d03e8afa1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ChampionsGuildDoor.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ChefGuildDoorPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ChefGuildDoorPlugin.class new file mode 100644 index 000000000..92de462b0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ChefGuildDoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin$1.class new file mode 100644 index 000000000..1b3c8fd0b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin$BucketHandler.class b/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin$BucketHandler.class new file mode 100644 index 000000000..cf9874dc7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin$BucketHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin.class new file mode 100644 index 000000000..796dff4db Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CowMilkingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin$1.class new file mode 100644 index 000000000..993ad08da Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin$Reward.class b/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin$Reward.class new file mode 100644 index 000000000..14ecc3946 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin$Reward.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin.class new file mode 100644 index 000000000..e7fbd6ce7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CrystalChestPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CrystalKeyObjectPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/CrystalKeyObjectPlugin.class new file mode 100644 index 000000000..ba9ef5cb1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CrystalKeyObjectPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/CulinomancerChestPliugin.class b/CompiledServer/production/Server/plugin/interaction/object/CulinomancerChestPliugin.class new file mode 100644 index 000000000..572550348 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/CulinomancerChestPliugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/DoogleLeafPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/DoogleLeafPlugin.class new file mode 100644 index 000000000..2201c8a14 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/DoogleLeafPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/DoorManagingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/DoorManagingPlugin.class new file mode 100644 index 000000000..d1d1661a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/DoorManagingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/DropPartyLeverOptionPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/DropPartyLeverOptionPlugin$1.class new file mode 100644 index 000000000..a4200ac6f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/DropPartyLeverOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/DropPartyLeverOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/DropPartyLeverOptionPlugin.class new file mode 100644 index 000000000..8311f3e65 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/DropPartyLeverOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/DummyAttackPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/DummyAttackPlugin.class new file mode 100644 index 000000000..eb823f1f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/DummyAttackPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$Lever.class b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$Lever.class new file mode 100644 index 000000000..72b99bf9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$Lever.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension$1.class b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension$1.class new file mode 100644 index 000000000..61e848f18 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension$2.class b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension$2.class new file mode 100644 index 000000000..c1077b36e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension.class b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension.class new file mode 100644 index 000000000..57c419e3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverCacheExtension.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverZone.class b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverZone.class new file mode 100644 index 000000000..0ff7806f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin$LeverZone.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin.class new file mode 100644 index 000000000..0c4bb6a4f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ErnestTheChickenPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$1.class new file mode 100644 index 000000000..467885426 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$2.class new file mode 100644 index 000000000..82825df03 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$FairyInterfaceHandler.class b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$FairyInterfaceHandler.class new file mode 100644 index 000000000..995c499d9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$FairyInterfaceHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$FairyRing.class b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$FairyRing.class new file mode 100644 index 000000000..17d65562f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin$FairyRing.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin.class new file mode 100644 index 000000000..200a0ca67 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FairyRingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FaladorGrapplePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/FaladorGrapplePlugin$1.class new file mode 100644 index 000000000..9a7ee8878 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FaladorGrapplePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FaladorGrapplePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/FaladorGrapplePlugin.class new file mode 100644 index 000000000..53675a890 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FaladorGrapplePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin$1.class new file mode 100644 index 000000000..f72885a0d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin$PickingPlant.class b/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin$PickingPlant.class new file mode 100644 index 000000000..b2e06f487 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin$PickingPlant.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin.class new file mode 100644 index 000000000..d5ed421f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FieldPickingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FishingContestGatePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/FishingContestGatePlugin.class new file mode 100644 index 000000000..8e817efb3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FishingContestGatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$FillPotHandler.class b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$FillPotHandler.class new file mode 100644 index 000000000..1c114810d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$FillPotHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$FlourExtension.class b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$FlourExtension.class new file mode 100644 index 000000000..204ba7b5a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$FlourExtension.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$GrainHopperPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$GrainHopperPlugin.class new file mode 100644 index 000000000..5ddaa1695 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin$GrainHopperPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin.class new file mode 100644 index 000000000..51b821617 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/FlourMakingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GertrudeCatPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/GertrudeCatPlugin.class new file mode 100644 index 000000000..6a798696d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GertrudeCatPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GnomeSpiritTreePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/GnomeSpiritTreePlugin.class new file mode 100644 index 000000000..d760a655a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GnomeSpiritTreePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin$1.class new file mode 100644 index 000000000..c826571b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin$GENPCPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin$GENPCPlugin.class new file mode 100644 index 000000000..f93947fe0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin$GENPCPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin.class new file mode 100644 index 000000000..2f5c9c66f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut$1.class b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut$1.class new file mode 100644 index 000000000..a61091e41 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut$2.class b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut$2.class new file mode 100644 index 000000000..5d23863d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut.class b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut.class new file mode 100644 index 000000000..8d427060b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GrandExchangeShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/GuidorDoorPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/GuidorDoorPlugin.class new file mode 100644 index 000000000..997bf03cb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/GuidorDoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/HaystackPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/HaystackPlugin.class new file mode 100644 index 000000000..cc9df422c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/HaystackPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/JangerBerryPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/JangerBerryPlugin$1.class new file mode 100644 index 000000000..1e3ccc80c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/JangerBerryPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/JangerBerryPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/JangerBerryPlugin.class new file mode 100644 index 000000000..0d1548639 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/JangerBerryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler$1.class b/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler$1.class new file mode 100644 index 000000000..4b6d15ff4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler$2.class b/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler$2.class new file mode 100644 index 000000000..5e9fb34df Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler.class b/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler.class new file mode 100644 index 000000000..3f8ac8b4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/KalphiteEntranceHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/KhardianInteractionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/KhardianInteractionPlugin.class new file mode 100644 index 000000000..f2ebb09fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/KhardianInteractionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LadderManagingPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/LadderManagingPlugin.class new file mode 100644 index 000000000..50204b900 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LadderManagingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LavaMazePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/LavaMazePlugin.class new file mode 100644 index 000000000..8e35226d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LavaMazePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumberYardCratePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/LumberYardCratePlugin.class new file mode 100644 index 000000000..da8d3c5ba Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumberYardCratePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$1.class new file mode 100644 index 000000000..a466e758b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$FishMongerDialogue.class b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$FishMongerDialogue.class new file mode 100644 index 000000000..d56d13c82 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$FishMongerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$LightCreatureHandler.class b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$LightCreatureHandler.class new file mode 100644 index 000000000..2e5a99797 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$LightCreatureHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$LightCreatureNPC.class b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$LightCreatureNPC.class new file mode 100644 index 000000000..6620a3ab4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin$LightCreatureNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin.class new file mode 100644 index 000000000..49ef9a395 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeBasementPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/LumbridgeSwampHolePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeSwampHolePlugin.class new file mode 100644 index 000000000..fdde6e177 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/LumbridgeSwampHolePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ModeratorObject.class b/CompiledServer/production/Server/plugin/interaction/object/ModeratorObject.class new file mode 100644 index 000000000..70089e64b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ModeratorObject.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/MossGiantRopePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/MossGiantRopePlugin.class new file mode 100644 index 000000000..455c70811 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/MossGiantRopePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/MoyrtniaSwampPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/MoyrtniaSwampPlugin.class new file mode 100644 index 000000000..c608837f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/MoyrtniaSwampPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/MuseumGatePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/MuseumGatePlugin.class new file mode 100644 index 000000000..6b71e4019 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/MuseumGatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PortsObjectPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/PortsObjectPlugin.class new file mode 100644 index 000000000..c6d32ca1d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PortsObjectPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PriestInPerilOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/PriestInPerilOptionPlugin.class new file mode 100644 index 000000000..fa3a41b41 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PriestInPerilOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$1.class new file mode 100644 index 000000000..5d9f81031 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$2.class b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$2.class new file mode 100644 index 000000000..32a4d9241 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$3.class b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$3.class new file mode 100644 index 000000000..ae1fab6ff Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin.class new file mode 100644 index 000000000..aedb49a3e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ProspectOrePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$1.class new file mode 100644 index 000000000..4584cc897 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$2.class b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$2.class new file mode 100644 index 000000000..760b315ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$FerociousBarbarianNPC.class b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$FerociousBarbarianNPC.class new file mode 100644 index 000000000..0a355c777 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$FerociousBarbarianNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$LogType.class b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$LogType.class new file mode 100644 index 000000000..203f0dfd5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin$LogType.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin.class new file mode 100644 index 000000000..6e66d69df Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/PyreSitePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin$1.class new file mode 100644 index 000000000..6f1b94b99 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin$Signs.class b/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin$Signs.class new file mode 100644 index 000000000..3dcb54ba4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin$Signs.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin.class new file mode 100644 index 000000000..7f5bfc98a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ReadSignPostPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/RedberryBushPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/RedberryBushPlugin.class new file mode 100644 index 000000000..b22194a5a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/RedberryBushPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin$1.class new file mode 100644 index 000000000..2eb64896e Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin$RestlessGhostNPC.class b/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin$RestlessGhostNPC.class new file mode 100644 index 000000000..7e319027a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin$RestlessGhostNPC.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin.class new file mode 100644 index 000000000..dd4c88ea2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/RestlessGhostPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/RomeoQuestPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/RomeoQuestPlugin.class new file mode 100644 index 000000000..3b71d54f4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/RomeoQuestPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SearchOptionPlugin$Search.class b/CompiledServer/production/Server/plugin/interaction/object/SearchOptionPlugin$Search.class new file mode 100644 index 000000000..64c608c98 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SearchOptionPlugin$Search.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SearchOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/SearchOptionPlugin.class new file mode 100644 index 000000000..eea95dc16 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SearchOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SeersCageUnlockPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/SeersCageUnlockPlugin.class new file mode 100644 index 000000000..6ea47ed4a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SeersCageUnlockPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShantayPassPlugin$ShantayComponentPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ShantayPassPlugin$ShantayComponentPlugin.class new file mode 100644 index 000000000..af9539cfd Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShantayPassPlugin$ShantayComponentPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShantayPassPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ShantayPassPlugin.class new file mode 100644 index 000000000..1bcbebd95 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShantayPassPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$1.class new file mode 100644 index 000000000..855cb59cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$2.class new file mode 100644 index 000000000..dfde7b7a0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStar.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStar.class new file mode 100644 index 000000000..a133aeede Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStar.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStarLogin.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStarLogin.class new file mode 100644 index 000000000..798175d7b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStarLogin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStarMiningPulse.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStarMiningPulse.class new file mode 100644 index 000000000..a35fa88b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$ShootingStarMiningPulse.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$StarSpriteDialogue.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$StarSpriteDialogue.class new file mode 100644 index 000000000..61f5c8bce Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin$StarSpriteDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin.class new file mode 100644 index 000000000..08d306026 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ShootingStarPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SilverCastingInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/SilverCastingInterfacePlugin.class new file mode 100644 index 000000000..d773bcc17 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SilverCastingInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SlashWebPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/SlashWebPlugin.class new file mode 100644 index 000000000..c7e19139c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SlashWebPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SlayerDangerSignPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/SlayerDangerSignPlugin.class new file mode 100644 index 000000000..85c7ea2e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SlayerDangerSignPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/SpinSpinningWheelPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/SpinSpinningWheelPlugin.class new file mode 100644 index 000000000..6a57720ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/SpinSpinningWheelPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin$1$1.class b/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin$1$1.class new file mode 100644 index 000000000..8836c8a68 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin$1.class new file mode 100644 index 000000000..4c2f8337f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin.class new file mode 100644 index 000000000..f69463305 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/ThievingGuidePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/TollGateOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/TollGateOptionPlugin.class new file mode 100644 index 000000000..df611f8bd Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/TollGateOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/VampireSlayerPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/VampireSlayerPlugin.class new file mode 100644 index 000000000..3c2140013 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/VampireSlayerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$1.class new file mode 100644 index 000000000..1f5997ddf Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverDialogue.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverDialogue.class new file mode 100644 index 000000000..57a55970f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets$1.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets$1.class new file mode 100644 index 000000000..5cd805171 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets$2.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets$2.class new file mode 100644 index 000000000..aa0d24c41 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets.class new file mode 100644 index 000000000..4ee6b5934 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin$LeverSets.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin.class new file mode 100644 index 000000000..ff59895a3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessLeverPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin$1.class new file mode 100644 index 000000000..ccb914d3c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin$Obelisk.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin$Obelisk.class new file mode 100644 index 000000000..b70338870 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin$Obelisk.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin.class new file mode 100644 index 000000000..bb30bad36 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WildernessObeliskPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WitchsPotionPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/WitchsPotionPlugin.class new file mode 100644 index 000000000..3775595aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WitchsPotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/WydinDoorPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/WydinDoorPlugin.class new file mode 100644 index 000000000..b33b15895 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/WydinDoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$1.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$1.class new file mode 100644 index 000000000..e75d43036 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$2.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$2.class new file mode 100644 index 000000000..a45a30730 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$3$1.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$3$1.class new file mode 100644 index 000000000..9ae7058f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$3$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$3.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$3.class new file mode 100644 index 000000000..577120c52 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$4.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$4.class new file mode 100644 index 000000000..d1ac44d40 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler$4.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler.class new file mode 100644 index 000000000..b8d7648e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCHandler.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$1.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$1.class new file mode 100644 index 000000000..cbf454931 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$2.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$2.class new file mode 100644 index 000000000..d6a802dbe Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$3.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$3.class new file mode 100644 index 000000000..98db4279a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$4.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$4.class new file mode 100644 index 000000000..93727379f Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$4.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$5.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$5.class new file mode 100644 index 000000000..3631d9945 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$5.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$6.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$6.class new file mode 100644 index 000000000..67e7b64e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$6.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$7.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$7.class new file mode 100644 index 000000000..d5e8a9559 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$7.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$8.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$8.class new file mode 100644 index 000000000..717c9d7dc Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution$8.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution.class new file mode 100644 index 000000000..e5e765336 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCRevolution.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCZone.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCZone.class new file mode 100644 index 000000000..fd6b45cd7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DMCZone.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DwarfMultiCannonPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DwarfMultiCannonPlugin$1.class new file mode 100644 index 000000000..37df9d180 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DwarfMultiCannonPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/dmc/DwarfMultiCannonPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/dmc/DwarfMultiCannonPlugin.class new file mode 100644 index 000000000..bb07c5200 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/dmc/DwarfMultiCannonPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$1.class new file mode 100644 index 000000000..78c66a9cb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$2.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$2.class new file mode 100644 index 000000000..6bde7b9e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$3.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$3.class new file mode 100644 index 000000000..626253e1d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$HerbDefinition.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$HerbDefinition.class new file mode 100644 index 000000000..49763d030 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$HerbDefinition.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$OsmanDialogue.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$OsmanDialogue.class new file mode 100644 index 000000000..37e1e1fe9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$OsmanDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SeasonDefinitions.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SeasonDefinitions.class new file mode 100644 index 000000000..395be79db Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SeasonDefinitions.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SqirkJuicePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SqirkJuicePlugin.class new file mode 100644 index 000000000..bccb39b91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SqirkJuicePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SqirkMakingDialogue.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SqirkMakingDialogue.class new file mode 100644 index 000000000..7f1796308 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin$SqirkMakingDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin.class new file mode 100644 index 000000000..88a85c2f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/GardenObjectsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/sorceress/SorceressGardenObject.class b/CompiledServer/production/Server/plugin/interaction/object/sorceress/SorceressGardenObject.class new file mode 100644 index 000000000..78a92097b Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/sorceress/SorceressGardenObject.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessDitchPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessDitchPlugin$1.class new file mode 100644 index 000000000..a40925d1a Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessDitchPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessDitchPlugin.class b/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessDitchPlugin.class new file mode 100644 index 000000000..43d65bfa2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessDitchPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessInterfacePlugin.class b/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessInterfacePlugin.class new file mode 100644 index 000000000..05c461bdb Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/object/wildyditch/WildernessInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/player/AttackOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/player/AttackOptionPlugin.class new file mode 100644 index 000000000..9db92dbcf Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/player/AttackOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/player/ExamineOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/player/ExamineOptionPlugin.class new file mode 100644 index 000000000..0086f2b4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/player/ExamineOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/player/FollowOptionPlugin$1.class b/CompiledServer/production/Server/plugin/interaction/player/FollowOptionPlugin$1.class new file mode 100644 index 000000000..6dce7e863 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/player/FollowOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/player/FollowOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/player/FollowOptionPlugin.class new file mode 100644 index 000000000..e2e0fce01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/player/FollowOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/player/LoginValidationPlugin.class b/CompiledServer/production/Server/plugin/interaction/player/LoginValidationPlugin.class new file mode 100644 index 000000000..7bbbfd80c Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/player/LoginValidationPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/interaction/player/RequestOptionPlugin.class b/CompiledServer/production/Server/plugin/interaction/player/RequestOptionPlugin.class new file mode 100644 index 000000000..d58fed084 Binary files /dev/null and b/CompiledServer/production/Server/plugin/interaction/player/RequestOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin$WarriorOptionPlugin$1.class b/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin$WarriorOptionPlugin$1.class new file mode 100644 index 000000000..53a2ec257 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin$WarriorOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin$WarriorOptionPlugin.class b/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin$WarriorOptionPlugin.class new file mode 100644 index 000000000..4f4001ff0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin$WarriorOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin.class b/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin.class new file mode 100644 index 000000000..32b81c67a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/AlKharidWarriorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/AntonNPC.class b/CompiledServer/production/Server/plugin/npc/AntonNPC.class new file mode 100644 index 000000000..277cc406b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/AntonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ArmourSuitNPC$1.class b/CompiledServer/production/Server/plugin/npc/ArmourSuitNPC$1.class new file mode 100644 index 000000000..ebcfbda99 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ArmourSuitNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ArmourSuitNPC.class b/CompiledServer/production/Server/plugin/npc/ArmourSuitNPC.class new file mode 100644 index 000000000..d52f20472 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ArmourSuitNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BarbarianNPC.class b/CompiledServer/production/Server/plugin/npc/BarbarianNPC.class new file mode 100644 index 000000000..bdc709395 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BarbarianNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BennyNPC.class b/CompiledServer/production/Server/plugin/npc/BennyNPC.class new file mode 100644 index 000000000..b33af87e1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BennyNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$1.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$1.class new file mode 100644 index 000000000..70808343d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$2$1.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$2$1.class new file mode 100644 index 000000000..60f064609 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$2$2.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$2$2.class new file mode 100644 index 000000000..577749ee5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$2$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$2.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$2.class new file mode 100644 index 000000000..dd376359c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$BorkCutscene$1.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$BorkCutscene$1.class new file mode 100644 index 000000000..9a9b3f6b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$BorkCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$BorkCutscene.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$BorkCutscene.class new file mode 100644 index 000000000..e4947f031 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$BorkCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$DagonDialogue.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$DagonDialogue.class new file mode 100644 index 000000000..8de5becd1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$DagonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$DagonElite.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$DagonElite.class new file mode 100644 index 000000000..b4e05e48d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$DagonElite.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC$OrkLegion.class b/CompiledServer/production/Server/plugin/npc/BorkNPC$OrkLegion.class new file mode 100644 index 000000000..f538fead7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC$OrkLegion.class differ diff --git a/CompiledServer/production/Server/plugin/npc/BorkNPC.class b/CompiledServer/production/Server/plugin/npc/BorkNPC.class new file mode 100644 index 000000000..823240c46 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/BorkNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/CatableponNPC.class b/CompiledServer/production/Server/plugin/npc/CatableponNPC.class new file mode 100644 index 000000000..163a82ada Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/CatableponNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler$1.class b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler$1.class new file mode 100644 index 000000000..1c755e519 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler$2.class b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler$2.class new file mode 100644 index 000000000..457af3268 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler.class b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler.class new file mode 100644 index 000000000..430dd760d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC$ChaosCombatHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC.class b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC.class new file mode 100644 index 000000000..7829d4a13 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ChaosElementalNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ChromaticDragonNPC.class b/CompiledServer/production/Server/plugin/npc/ChromaticDragonNPC.class new file mode 100644 index 000000000..1b3f696d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ChromaticDragonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/CitizenNPC.class b/CompiledServer/production/Server/plugin/npc/CitizenNPC.class new file mode 100644 index 000000000..f664129bf Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/CitizenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/CowNPC.class b/CompiledServer/production/Server/plugin/npc/CowNPC.class new file mode 100644 index 000000000..1f03e3f56 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/CowNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/CrazyArchaeologistNPC$ArchaeologistHandler.class b/CompiledServer/production/Server/plugin/npc/CrazyArchaeologistNPC$ArchaeologistHandler.class new file mode 100644 index 000000000..a85010c8f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/CrazyArchaeologistNPC$ArchaeologistHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/CrazyArchaeologistNPC.class b/CompiledServer/production/Server/plugin/npc/CrazyArchaeologistNPC.class new file mode 100644 index 000000000..91cb7eb15 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/CrazyArchaeologistNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/DarkWizardNPC.class b/CompiledServer/production/Server/plugin/npc/DarkWizardNPC.class new file mode 100644 index 000000000..bc1b6a08f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/DarkWizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/DraynorTreeNPC.class b/CompiledServer/production/Server/plugin/npc/DraynorTreeNPC.class new file mode 100644 index 000000000..1d1e26add Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/DraynorTreeNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/DuckNPC.class b/CompiledServer/production/Server/plugin/npc/DuckNPC.class new file mode 100644 index 000000000..5ed18f705 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/DuckNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ElementalNPC$1.class b/CompiledServer/production/Server/plugin/npc/ElementalNPC$1.class new file mode 100644 index 000000000..283a22dd4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ElementalNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ElementalNPC$ElementalDefinition.class b/CompiledServer/production/Server/plugin/npc/ElementalNPC$ElementalDefinition.class new file mode 100644 index 000000000..9f518ad24 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ElementalNPC$ElementalDefinition.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ElementalNPC.class b/CompiledServer/production/Server/plugin/npc/ElementalNPC.class new file mode 100644 index 000000000..b002955bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ElementalNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC$MaligniusMortifer$1.class b/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC$MaligniusMortifer$1.class new file mode 100644 index 000000000..60ec40b0e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC$MaligniusMortifer$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC$MaligniusMortifer.class b/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC$MaligniusMortifer.class new file mode 100644 index 000000000..3c8b453b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC$MaligniusMortifer.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC.class b/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC.class new file mode 100644 index 000000000..965ca99c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ElementalWizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/FishingNPC.class b/CompiledServer/production/Server/plugin/npc/FishingNPC.class new file mode 100644 index 000000000..c699f1466 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/FishingNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$1.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$1.class new file mode 100644 index 000000000..90fcb3381 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$2.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$2.class new file mode 100644 index 000000000..f4043754a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$3.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$3.class new file mode 100644 index 000000000..24f8f107e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$3.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$4$1.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$4$1.class new file mode 100644 index 000000000..f5a06c7db Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$4$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$4.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$4.class new file mode 100644 index 000000000..ddc5038c7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$4.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$5.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$5.class new file mode 100644 index 000000000..65e226c6d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC$5.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GiantMoleNPC.class b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC.class new file mode 100644 index 000000000..5f3a9abfd Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GiantMoleNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GoblinVillageNPC.class b/CompiledServer/production/Server/plugin/npc/GoblinVillageNPC.class new file mode 100644 index 000000000..745e91d85 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GoblinVillageNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GraveStoneNPC$GraveStonePlugin.class b/CompiledServer/production/Server/plugin/npc/GraveStoneNPC$GraveStonePlugin.class new file mode 100644 index 000000000..d5ad5e771 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GraveStoneNPC$GraveStonePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GraveStoneNPC.class b/CompiledServer/production/Server/plugin/npc/GraveStoneNPC.class new file mode 100644 index 000000000..65a38d4a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GraveStoneNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/GuardNPC.class b/CompiledServer/production/Server/plugin/npc/GuardNPC.class new file mode 100644 index 000000000..eaaefc67c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/GuardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/HansNPC.class b/CompiledServer/production/Server/plugin/npc/HansNPC.class new file mode 100644 index 000000000..506066ab0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/HansNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/HighwayManNPC.class b/CompiledServer/production/Server/plugin/npc/HighwayManNPC.class new file mode 100644 index 000000000..3afea7b0d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/HighwayManNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/JogreNPC.class b/CompiledServer/production/Server/plugin/npc/JogreNPC.class new file mode 100644 index 000000000..ab77b4029 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/JogreNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$1.class b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$1.class new file mode 100644 index 000000000..3b7a10e46 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$KQCombatSwingHandler$1.class b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$KQCombatSwingHandler$1.class new file mode 100644 index 000000000..e8d236d3a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$KQCombatSwingHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$KQCombatSwingHandler.class b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$KQCombatSwingHandler.class new file mode 100644 index 000000000..1e52294fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC$KQCombatSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC.class b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC.class new file mode 100644 index 000000000..cd4053738 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KalphiteQueenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KamfreenaNPC.class b/CompiledServer/production/Server/plugin/npc/KamfreenaNPC.class new file mode 100644 index 000000000..dbaaac5cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KamfreenaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC$1.class b/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC$1.class new file mode 100644 index 000000000..aba3c141d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC$KBDCombatSwingHandler.class b/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC$KBDCombatSwingHandler.class new file mode 100644 index 000000000..768fa67a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC$KBDCombatSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC.class b/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC.class new file mode 100644 index 000000000..fbeadc8ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/KingBlackDragonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/LumberKittenNPC.class b/CompiledServer/production/Server/plugin/npc/LumberKittenNPC.class new file mode 100644 index 000000000..68465e072 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/LumberKittenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/LumbridgeInstructorNPC.class b/CompiledServer/production/Server/plugin/npc/LumbridgeInstructorNPC.class new file mode 100644 index 000000000..733660572 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/LumbridgeInstructorNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/MetalDragonNPC.class b/CompiledServer/production/Server/plugin/npc/MetalDragonNPC.class new file mode 100644 index 000000000..7ae062a06 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/MetalDragonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/MonkNPC$1.class b/CompiledServer/production/Server/plugin/npc/MonkNPC$1.class new file mode 100644 index 000000000..099490531 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/MonkNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/MonkNPC$CombatAction.class b/CompiledServer/production/Server/plugin/npc/MonkNPC$CombatAction.class new file mode 100644 index 000000000..9f67fdf56 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/MonkNPC$CombatAction.class differ diff --git a/CompiledServer/production/Server/plugin/npc/MonkNPC.class b/CompiledServer/production/Server/plugin/npc/MonkNPC.class new file mode 100644 index 000000000..e1feb3fda Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/MonkNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/RatNPC.class b/CompiledServer/production/Server/plugin/npc/RatNPC.class new file mode 100644 index 000000000..3ff2249cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/RatNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/RatTutorialNPC.class b/CompiledServer/production/Server/plugin/npc/RatTutorialNPC.class new file mode 100644 index 000000000..0f8b363f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/RatTutorialNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/RockCrabNPC$1.class b/CompiledServer/production/Server/plugin/npc/RockCrabNPC$1.class new file mode 100644 index 000000000..9132d4337 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/RockCrabNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/RockCrabNPC.class b/CompiledServer/production/Server/plugin/npc/RockCrabNPC.class new file mode 100644 index 000000000..792819040 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/RockCrabNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/SandwichLadyNPC.class b/CompiledServer/production/Server/plugin/npc/SandwichLadyNPC.class new file mode 100644 index 000000000..c79bb2f51 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/SandwichLadyNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ShanomiNPC.class b/CompiledServer/production/Server/plugin/npc/ShanomiNPC.class new file mode 100644 index 000000000..134349b98 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ShanomiNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/SheepNPC.class b/CompiledServer/production/Server/plugin/npc/SheepNPC.class new file mode 100644 index 000000000..0b0ff5ec1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/SheepNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ShopNPC.class b/CompiledServer/production/Server/plugin/npc/ShopNPC.class new file mode 100644 index 000000000..0c0f0fce3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ShopNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/SkippyNPC.class b/CompiledServer/production/Server/plugin/npc/SkippyNPC.class new file mode 100644 index 000000000..23699ebca Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/SkippyNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/StrayDogNPC$1.class b/CompiledServer/production/Server/plugin/npc/StrayDogNPC$1.class new file mode 100644 index 000000000..4c841d078 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/StrayDogNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/StrayDogNPC.class b/CompiledServer/production/Server/plugin/npc/StrayDogNPC.class new file mode 100644 index 000000000..0eb8dbcae Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/StrayDogNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ThrowerTrollNPC$1.class b/CompiledServer/production/Server/plugin/npc/ThrowerTrollNPC$1.class new file mode 100644 index 000000000..81fd248e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ThrowerTrollNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ThrowerTrollNPC.class b/CompiledServer/production/Server/plugin/npc/ThrowerTrollNPC.class new file mode 100644 index 000000000..c61f655a2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ThrowerTrollNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC$1.class b/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC$1.class new file mode 100644 index 000000000..cdef350f9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC$TormentedDemonSwingHandler.class b/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC$TormentedDemonSwingHandler.class new file mode 100644 index 000000000..35f3067ff Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC$TormentedDemonSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC.class b/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC.class new file mode 100644 index 000000000..dd69630d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TormentedDemonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TribesmanNPC.class b/CompiledServer/production/Server/plugin/npc/TribesmanNPC.class new file mode 100644 index 000000000..bfac48aad Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TribesmanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TutorialChickenNPC.class b/CompiledServer/production/Server/plugin/npc/TutorialChickenNPC.class new file mode 100644 index 000000000..19fb59c23 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TutorialChickenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TzRekJadNPC$TzRekJadDialogue.class b/CompiledServer/production/Server/plugin/npc/TzRekJadNPC$TzRekJadDialogue.class new file mode 100644 index 000000000..caee461ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TzRekJadNPC$TzRekJadDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TzRekJadNPC$TzhaarMejJalDialogue.class b/CompiledServer/production/Server/plugin/npc/TzRekJadNPC$TzhaarMejJalDialogue.class new file mode 100644 index 000000000..d62c8c8e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TzRekJadNPC$TzhaarMejJalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/TzRekJadNPC.class b/CompiledServer/production/Server/plugin/npc/TzRekJadNPC.class new file mode 100644 index 000000000..80ba14ee8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/TzRekJadNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/VampireSlayerNPC.class b/CompiledServer/production/Server/plugin/npc/VampireSlayerNPC.class new file mode 100644 index 000000000..d40aab49b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/VampireSlayerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/WerewolfNPC.class b/CompiledServer/production/Server/plugin/npc/WerewolfNPC.class new file mode 100644 index 000000000..e671eee7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/WerewolfNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/ZombieNPC.class b/CompiledServer/production/Server/plugin/npc/ZombieNPC.class new file mode 100644 index 000000000..db36b9b9b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/ZombieNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC$1.class b/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC$1.class new file mode 100644 index 000000000..b19395a61 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC$CallistoCombatSwingHandler.class b/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC$CallistoCombatSwingHandler.class new file mode 100644 index 000000000..55c3f742f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC$CallistoCombatSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC.class b/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC.class new file mode 100644 index 000000000..5f097ca9b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/callisto/CallistoNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler$1.class b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler$1.class new file mode 100644 index 000000000..256bff4c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler$2.class b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler$2.class new file mode 100644 index 000000000..f6e162783 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler.class b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler.class new file mode 100644 index 000000000..4c9ed59ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC$CombatHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC.class b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC.class new file mode 100644 index 000000000..cd375f217 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/corp/CorporealBeastNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/corp/DarkEnergyCoreNPC$1.class b/CompiledServer/production/Server/plugin/npc/corp/DarkEnergyCoreNPC$1.class new file mode 100644 index 000000000..81e8ce12e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/corp/DarkEnergyCoreNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/corp/DarkEnergyCoreNPC.class b/CompiledServer/production/Server/plugin/npc/corp/DarkEnergyCoreNPC.class new file mode 100644 index 000000000..b2466425b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/corp/DarkEnergyCoreNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/AbyssalLurkerNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/AbyssalLurkerNPC.class new file mode 100644 index 000000000..3af2607ca Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/AbyssalLurkerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/AbyssalParasiteNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/AbyssalParasiteNPC.class new file mode 100644 index 000000000..672a59b8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/AbyssalParasiteNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/AbyssalTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/AbyssalTitanNPC.class new file mode 100644 index 000000000..a5568ebc2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/AbyssalTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/AlbinoRatNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/AlbinoRatNPC.class new file mode 100644 index 000000000..c33205b7f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/AlbinoRatNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/ArcticBearNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/ArcticBearNPC.class new file mode 100644 index 000000000..d3ae4d8e8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/ArcticBearNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BabyChinchompaNPC$BabyChinchompaDialogue.class b/CompiledServer/production/Server/plugin/npc/familiar/BabyChinchompaNPC$BabyChinchompaDialogue.class new file mode 100644 index 000000000..957a0b709 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BabyChinchompaNPC$BabyChinchompaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BabyChinchompaNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/BabyChinchompaNPC.class new file mode 100644 index 000000000..58a932c6e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BabyChinchompaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BarkerToadNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/BarkerToadNPC.class new file mode 100644 index 000000000..58edb445d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BarkerToadNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC$1$1.class b/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC$1$1.class new file mode 100644 index 000000000..73926270d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC$1.class new file mode 100644 index 000000000..efd69cf8a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC.class new file mode 100644 index 000000000..31a0fdabe Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BeaverNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BloatedLeechNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/BloatedLeechNPC.class new file mode 100644 index 000000000..3282a7f01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BloatedLeechNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BullAntNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/BullAntNPC.class new file mode 100644 index 000000000..8bd03ce05 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BullAntNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BunyipNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/BunyipNPC$1.class new file mode 100644 index 000000000..2f5bce2fb Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BunyipNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/BunyipNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/BunyipNPC.class new file mode 100644 index 000000000..a6ecb00c0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/BunyipNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$1.class new file mode 100644 index 000000000..57a33a6d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritCockatrice.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritCockatrice.class new file mode 100644 index 000000000..b2c1c1ea2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritCockatrice.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritCoraxatrice.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritCoraxatrice.class new file mode 100644 index 000000000..f0bff6051 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritCoraxatrice.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritGuthatrice.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritGuthatrice.class new file mode 100644 index 000000000..722bf5ff6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritGuthatrice.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritPengatrice.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritPengatrice.class new file mode 100644 index 000000000..9c5b997ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritPengatrice.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritVulatrice.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritVulatrice.class new file mode 100644 index 000000000..f778c0398 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritVulatrice.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritZamatrice.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritZamatrice.class new file mode 100644 index 000000000..8e158760d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC$SpiritZamatrice.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC.class new file mode 100644 index 000000000..1209bdcdd Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CockatriceFamiliarNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC$CompostBucketPlugin.class b/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC$CompostBucketPlugin.class new file mode 100644 index 000000000..0bb06dc27 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC$CompostBucketPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC$CompostMoundDialogue.class b/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC$CompostMoundDialogue.class new file mode 100644 index 000000000..fe794793e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC$CompostMoundDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC.class new file mode 100644 index 000000000..4662c732a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/CompostMoundNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC$1$1.class b/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC$1$1.class new file mode 100644 index 000000000..876e13fc0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC$1.class new file mode 100644 index 000000000..b35760bff Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC.class new file mode 100644 index 000000000..16fd0d05b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/DesertWyrmNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC$1.class new file mode 100644 index 000000000..4d41021d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC$2.class b/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC$2.class new file mode 100644 index 000000000..8dc895097 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC.class new file mode 100644 index 000000000..db3164d29 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/DreadfowlNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/EvilTurnipNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/EvilTurnipNPC.class new file mode 100644 index 000000000..8e2ad11ca Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/EvilTurnipNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/FireTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/FireTitanNPC.class new file mode 100644 index 000000000..1c615ec8d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/FireTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/ForgeRegentNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/ForgeRegentNPC.class new file mode 100644 index 000000000..a83d6c4c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/ForgeRegentNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/FruitBatNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/FruitBatNPC$1.class new file mode 100644 index 000000000..eeb3b2ddb Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/FruitBatNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/FruitBatNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/FruitBatNPC.class new file mode 100644 index 000000000..fc18b27c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/FruitBatNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/GeyserTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/GeyserTitanNPC.class new file mode 100644 index 000000000..5c167a300 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/GeyserTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/GiantChinchompaNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/GiantChinchompaNPC$1.class new file mode 100644 index 000000000..9e46c8a9b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/GiantChinchompaNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/GiantChinchompaNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/GiantChinchompaNPC.class new file mode 100644 index 000000000..66f3a7772 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/GiantChinchompaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/GiantEntNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/GiantEntNPC.class new file mode 100644 index 000000000..f78adaef6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/GiantEntNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/GraniteCrabNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/GraniteCrabNPC.class new file mode 100644 index 000000000..47befde99 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/GraniteCrabNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/GraniteLobsterNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/GraniteLobsterNPC.class new file mode 100644 index 000000000..194e10272 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/GraniteLobsterNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/HoneyBadgerNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/HoneyBadgerNPC.class new file mode 100644 index 000000000..b691de7f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/HoneyBadgerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/HydraNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/HydraNPC.class new file mode 100644 index 000000000..89fa09f1c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/HydraNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/IbisNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/IbisNPC$1.class new file mode 100644 index 000000000..ef2a1f576 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/IbisNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/IbisNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/IbisNPC.class new file mode 100644 index 000000000..4b0b5571f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/IbisNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/IceTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/IceTitanNPC.class new file mode 100644 index 000000000..69a688e97 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/IceTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/IronTitanNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/IronTitanNPC$1.class new file mode 100644 index 000000000..a92162a5a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/IronTitanNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/IronTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/IronTitanNPC.class new file mode 100644 index 000000000..2729846aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/IronTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/KalphiteNPC$KalphitePrincessDialogue.class b/CompiledServer/production/Server/plugin/npc/familiar/KalphiteNPC$KalphitePrincessDialogue.class new file mode 100644 index 000000000..86a1d38ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/KalphiteNPC$KalphitePrincessDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/KalphiteNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/KalphiteNPC.class new file mode 100644 index 000000000..270924e15 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/KalphiteNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/KaramthulhuOverlordNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/KaramthulhuOverlordNPC.class new file mode 100644 index 000000000..b8af0a3ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/KaramthulhuOverlordNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/LavaTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/LavaTitanNPC.class new file mode 100644 index 000000000..7aedea47f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/LavaTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC$1.class new file mode 100644 index 000000000..0f48d98d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC$MacawDialogue.class b/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC$MacawDialogue.class new file mode 100644 index 000000000..26d1fdd90 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC$MacawDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC.class new file mode 100644 index 000000000..cab9ce2bd Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MacawNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MagpieNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MagpieNPC.class new file mode 100644 index 000000000..053a837fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MagpieNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$1.class new file mode 100644 index 000000000..c19398b67 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$AdamantMinotaurNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$AdamantMinotaurNPC.class new file mode 100644 index 000000000..b96a44346 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$AdamantMinotaurNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$BronzeMinotaurNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$BronzeMinotaurNPC.class new file mode 100644 index 000000000..ad1126e78 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$BronzeMinotaurNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$IronMinotaurNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$IronMinotaurNPC.class new file mode 100644 index 000000000..8a7cade8c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$IronMinotaurNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$MithrilMinotaurNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$MithrilMinotaurNPC.class new file mode 100644 index 000000000..7beed1ac7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$MithrilMinotaurNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$RuneMinotaurNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$RuneMinotaurNPC.class new file mode 100644 index 000000000..2ae15ff4a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$RuneMinotaurNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$SteelMinotaurNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$SteelMinotaurNPC.class new file mode 100644 index 000000000..c65127a49 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC$SteelMinotaurNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC.class new file mode 100644 index 000000000..ac680a567 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MinotaurFamiliarNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/MossTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/MossTitanNPC.class new file mode 100644 index 000000000..01b8c1708 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/MossTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/ObsidianGolemNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/ObsidianGolemNPC.class new file mode 100644 index 000000000..72d18fab0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/ObsidianGolemNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/PackYakNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/PackYakNPC.class new file mode 100644 index 000000000..ef61400b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/PackYakNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/PrayingMantisNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/PrayingMantisNPC.class new file mode 100644 index 000000000..66cf4a39e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/PrayingMantisNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC$PyreLordFiremake$1.class b/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC$PyreLordFiremake$1.class new file mode 100644 index 000000000..9ae3d0cd5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC$PyreLordFiremake$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC$PyreLordFiremake.class b/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC$PyreLordFiremake.class new file mode 100644 index 000000000..5c3ef2fde Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC$PyreLordFiremake.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC.class new file mode 100644 index 000000000..33f7b5bd1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/PyreLordNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/RavenousLocustNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/RavenousLocustNPC.class new file mode 100644 index 000000000..b5e7c92fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/RavenousLocustNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SmokeDevilNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/SmokeDevilNPC$1.class new file mode 100644 index 000000000..8d976318b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SmokeDevilNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SmokeDevilNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SmokeDevilNPC.class new file mode 100644 index 000000000..da417b55d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SmokeDevilNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SnakelingNPC$PetSnakelingDialogue.class b/CompiledServer/production/Server/plugin/npc/familiar/SnakelingNPC$PetSnakelingDialogue.class new file mode 100644 index 000000000..ab88aad98 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SnakelingNPC$PetSnakelingDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SnakelingNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SnakelingNPC.class new file mode 100644 index 000000000..3b042d30f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SnakelingNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritCobraNPC$Egg.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritCobraNPC$Egg.class new file mode 100644 index 000000000..800212e09 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritCobraNPC$Egg.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritCobraNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritCobraNPC.class new file mode 100644 index 000000000..0c4e16250 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritCobraNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritDagannothNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritDagannothNPC.class new file mode 100644 index 000000000..0962046e0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritDagannothNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritGraahkNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritGraahkNPC.class new file mode 100644 index 000000000..b55573de2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritGraahkNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritJellyNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritJellyNPC.class new file mode 100644 index 000000000..078b98c51 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritJellyNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritKalphiteNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritKalphiteNPC$1.class new file mode 100644 index 000000000..69858f8c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritKalphiteNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritKalphiteNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritKalphiteNPC.class new file mode 100644 index 000000000..5080a4319 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritKalphiteNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritKyattNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritKyattNPC.class new file mode 100644 index 000000000..da5072934 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritKyattNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritLarupiaNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritLarupiaNPC.class new file mode 100644 index 000000000..3b725f272 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritLarupiaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritMosquitoNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritMosquitoNPC.class new file mode 100644 index 000000000..245efb9bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritMosquitoNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritPengatriceNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritPengatriceNPC.class new file mode 100644 index 000000000..4b2bd5026 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritPengatriceNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritScorpionNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritScorpionNPC.class new file mode 100644 index 000000000..c51d4880f Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritScorpionNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritSpiderNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritSpiderNPC.class new file mode 100644 index 000000000..ac9ef7b8d Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritSpiderNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritTerrorbirdNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritTerrorbirdNPC.class new file mode 100644 index 000000000..1d6e305fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritTerrorbirdNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritTzKihNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritTzKihNPC.class new file mode 100644 index 000000000..5b30732ce Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritTzKihNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritWolfNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritWolfNPC$1.class new file mode 100644 index 000000000..625f296b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritWolfNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SpiritWolfNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SpiritWolfNPC.class new file mode 100644 index 000000000..4074d8744 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SpiritWolfNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SteelTitanNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/SteelTitanNPC$1.class new file mode 100644 index 000000000..efec4245c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SteelTitanNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SteelTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SteelTitanNPC.class new file mode 100644 index 000000000..f75a4a69a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SteelTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/StrangerPlantNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/StrangerPlantNPC.class new file mode 100644 index 000000000..db22fbb59 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/StrangerPlantNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/SwampTitanNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/SwampTitanNPC.class new file mode 100644 index 000000000..b4c3a77f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/SwampTitanNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/TalonBeastNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/TalonBeastNPC.class new file mode 100644 index 000000000..274d3635c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/TalonBeastNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/ThornySnailNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/ThornySnailNPC$1.class new file mode 100644 index 000000000..a29147bd8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/ThornySnailNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/ThornySnailNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/ThornySnailNPC.class new file mode 100644 index 000000000..618cbbb74 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/ThornySnailNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/UnicornStallionNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/UnicornStallionNPC$1.class new file mode 100644 index 000000000..72f9abbbf Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/UnicornStallionNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/UnicornStallionNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/UnicornStallionNPC.class new file mode 100644 index 000000000..46425ef91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/UnicornStallionNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VampireBatNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VampireBatNPC.class new file mode 100644 index 000000000..89fc41c4b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VampireBatNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VetionNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VetionNPC.class new file mode 100644 index 000000000..20edadca0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VetionNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$1.class new file mode 100644 index 000000000..aa650321e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidRavagerNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidRavagerNPC.class new file mode 100644 index 000000000..556fa13b5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidRavagerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidShifterNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidShifterNPC.class new file mode 100644 index 000000000..f1d41f0c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidShifterNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidSpinnerNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidSpinnerNPC.class new file mode 100644 index 000000000..9a04f2f5c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidSpinnerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidTorcherNPC$1.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidTorcherNPC$1.class new file mode 100644 index 000000000..db236e415 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidTorcherNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidTorcherNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidTorcherNPC.class new file mode 100644 index 000000000..1b9407ba6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC$VoidTorcherNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC.class new file mode 100644 index 000000000..d18c966c1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/VoidFamiliarNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/WarTortoiseNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/WarTortoiseNPC.class new file mode 100644 index 000000000..17d128b2e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/WarTortoiseNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/familiar/WolpertingerNPC.class b/CompiledServer/production/Server/plugin/npc/familiar/WolpertingerNPC.class new file mode 100644 index 000000000..c5b8114c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/familiar/WolpertingerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/kraken/CaveKrakenNPC$1.class b/CompiledServer/production/Server/plugin/npc/kraken/CaveKrakenNPC$1.class new file mode 100644 index 000000000..7226b868b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/kraken/CaveKrakenNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/kraken/CaveKrakenNPC.class b/CompiledServer/production/Server/plugin/npc/kraken/CaveKrakenNPC.class new file mode 100644 index 000000000..c4394e857 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/kraken/CaveKrakenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/kraken/EnormousTentacleNPC$1.class b/CompiledServer/production/Server/plugin/npc/kraken/EnormousTentacleNPC$1.class new file mode 100644 index 000000000..807710adc Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/kraken/EnormousTentacleNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/kraken/EnormousTentacleNPC.class b/CompiledServer/production/Server/plugin/npc/kraken/EnormousTentacleNPC.class new file mode 100644 index 000000000..1d2a72090 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/kraken/EnormousTentacleNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/kraken/KrakenNPC$1.class b/CompiledServer/production/Server/plugin/npc/kraken/KrakenNPC$1.class new file mode 100644 index 000000000..1204baf1c Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/kraken/KrakenNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/kraken/KrakenNPC.class b/CompiledServer/production/Server/plugin/npc/kraken/KrakenNPC.class new file mode 100644 index 000000000..9a7cba017 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/kraken/KrakenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/gertrudes_cat/FluffNPC.class b/CompiledServer/production/Server/plugin/npc/quest/gertrudes_cat/FluffNPC.class new file mode 100644 index 000000000..1f9d1acec Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/gertrudes_cat/FluffNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/pirates_treasure/GardenerNPC$1.class b/CompiledServer/production/Server/plugin/npc/quest/pirates_treasure/GardenerNPC$1.class new file mode 100644 index 000000000..4044e8239 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/pirates_treasure/GardenerNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/pirates_treasure/GardenerNPC.class b/CompiledServer/production/Server/plugin/npc/quest/pirates_treasure/GardenerNPC.class new file mode 100644 index 000000000..1f9713b50 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/pirates_treasure/GardenerNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/priest_in_peril/MonkOfZamorakNPC.class b/CompiledServer/production/Server/plugin/npc/quest/priest_in_peril/MonkOfZamorakNPC.class new file mode 100644 index 000000000..22354d1de Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/priest_in_peril/MonkOfZamorakNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/priest_in_peril/TempleGuardianNPC.class b/CompiledServer/production/Server/plugin/npc/quest/priest_in_peril/TempleGuardianNPC.class new file mode 100644 index 000000000..5cdd0f02e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/priest_in_peril/TempleGuardianNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/romeo__juliet/JulietNPC.class b/CompiledServer/production/Server/plugin/npc/quest/romeo__juliet/JulietNPC.class new file mode 100644 index 000000000..88b189917 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/romeo__juliet/JulietNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/quest/romeo__juliet/RomeoNPC.class b/CompiledServer/production/Server/plugin/npc/quest/romeo__juliet/RomeoNPC.class new file mode 100644 index 000000000..9f4bcdf5b Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/quest/romeo__juliet/RomeoNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/revenant/CorruptEquipment.class b/CompiledServer/production/Server/plugin/npc/revenant/CorruptEquipment.class new file mode 100644 index 000000000..b0d1ab0e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/revenant/CorruptEquipment.class differ diff --git a/CompiledServer/production/Server/plugin/npc/revenant/PVPEquipment.class b/CompiledServer/production/Server/plugin/npc/revenant/PVPEquipment.class new file mode 100644 index 000000000..8d8c94b93 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/revenant/PVPEquipment.class differ diff --git a/CompiledServer/production/Server/plugin/npc/revenant/RevenantCombatHandler.class b/CompiledServer/production/Server/plugin/npc/revenant/RevenantCombatHandler.class new file mode 100644 index 000000000..5d037ee49 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/revenant/RevenantCombatHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/revenant/RevenantNPC.class b/CompiledServer/production/Server/plugin/npc/revenant/RevenantNPC.class new file mode 100644 index 000000000..50a76ec94 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/revenant/RevenantNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/revenant/RevenantPlugin.class b/CompiledServer/production/Server/plugin/npc/revenant/RevenantPlugin.class new file mode 100644 index 000000000..d2d4ffcaa Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/revenant/RevenantPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/revenant/RevenantType.class b/CompiledServer/production/Server/plugin/npc/revenant/RevenantType.class new file mode 100644 index 000000000..8a200bc07 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/revenant/RevenantType.class differ diff --git a/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC$1.class b/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC$1.class new file mode 100644 index 000000000..034884d8e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC$VenenatisCombatSwingHandler.class b/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC$VenenatisCombatSwingHandler.class new file mode 100644 index 000000000..4b7b8ee9a Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC$VenenatisCombatSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC.class b/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC.class new file mode 100644 index 000000000..6fe7511db Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/venenatis/VenenatisNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCombatHandler.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCombatHandler.class new file mode 100644 index 000000000..835e0c61e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCombatHandler.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCutscene$1.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCutscene$1.class new file mode 100644 index 000000000..86cb81f91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCutscene.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCutscene.class new file mode 100644 index 000000000..fd93479f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahNPC.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahNPC.class new file mode 100644 index 000000000..54ecce457 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahNPC.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$1.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$1.class new file mode 100644 index 000000000..aa0e0f984 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2$1$1.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2$1$1.class new file mode 100644 index 000000000..1dd19410e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2$1.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2$1.class new file mode 100644 index 000000000..10ae7dde7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2.class new file mode 100644 index 000000000..7b8355967 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$2.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$3$1.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$3$1.class new file mode 100644 index 000000000..d7fb04390 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$3$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$3.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$3.class new file mode 100644 index 000000000..9d3f8c5f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$3.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$Pattern.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$Pattern.class new file mode 100644 index 000000000..d11ca68bd Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern$Pattern.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern.class new file mode 100644 index 000000000..acb27b009 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPattern.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPlugin$1.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPlugin$1.class new file mode 100644 index 000000000..aabde06d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPlugin.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPlugin.class new file mode 100644 index 000000000..803fa5404 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahSpot.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahSpot.class new file mode 100644 index 000000000..02f708e5e Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahSpot.class differ diff --git a/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahType.class b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahType.class new file mode 100644 index 000000000..72fd08764 Binary files /dev/null and b/CompiledServer/production/Server/plugin/npc/zulrah/ZulrahType.class differ diff --git a/CompiledServer/production/Server/plugin/quest/CooksAssistant.class b/CompiledServer/production/Server/plugin/quest/CooksAssistant.class new file mode 100644 index 000000000..2a0cf2dc2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/CooksAssistant.class differ diff --git a/CompiledServer/production/Server/plugin/quest/DoricsQuest.class b/CompiledServer/production/Server/plugin/quest/DoricsQuest.class new file mode 100644 index 000000000..29a6d5c51 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/DoricsQuest.class differ diff --git a/CompiledServer/production/Server/plugin/quest/DruidicRitual$1.class b/CompiledServer/production/Server/plugin/quest/DruidicRitual$1.class new file mode 100644 index 000000000..e68f52473 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/DruidicRitual$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/DruidicRitual.class b/CompiledServer/production/Server/plugin/quest/DruidicRitual.class new file mode 100644 index 000000000..dffcd2548 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/DruidicRitual.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ErnestTheChicken$ErnestChickenNPC.class b/CompiledServer/production/Server/plugin/quest/ErnestTheChicken$ErnestChickenNPC.class new file mode 100644 index 000000000..c0396c400 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ErnestTheChicken$ErnestChickenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ErnestTheChicken$ErnestNPC.class b/CompiledServer/production/Server/plugin/quest/ErnestTheChicken$ErnestNPC.class new file mode 100644 index 000000000..32c7531fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ErnestTheChicken$ErnestNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ErnestTheChicken.class b/CompiledServer/production/Server/plugin/quest/ErnestTheChicken.class new file mode 100644 index 000000000..0014e7263 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ErnestTheChicken.class differ diff --git a/CompiledServer/production/Server/plugin/quest/GertrudesCat.class b/CompiledServer/production/Server/plugin/quest/GertrudesCat.class new file mode 100644 index 000000000..9b861b039 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/GertrudesCat.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ImpCatcher.class b/CompiledServer/production/Server/plugin/quest/ImpCatcher.class new file mode 100644 index 000000000..8d8d0f0e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ImpCatcher.class differ diff --git a/CompiledServer/production/Server/plugin/quest/PriestInPeril.class b/CompiledServer/production/Server/plugin/quest/PriestInPeril.class new file mode 100644 index 000000000..cafcf9d02 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/PriestInPeril.class differ diff --git a/CompiledServer/production/Server/plugin/quest/RomeoJuliet.class b/CompiledServer/production/Server/plugin/quest/RomeoJuliet.class new file mode 100644 index 000000000..cf8560061 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/RomeoJuliet.class differ diff --git a/CompiledServer/production/Server/plugin/quest/RuneMysteries.class b/CompiledServer/production/Server/plugin/quest/RuneMysteries.class new file mode 100644 index 000000000..12d82805c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/RuneMysteries.class differ diff --git a/CompiledServer/production/Server/plugin/quest/SheepShearer.class b/CompiledServer/production/Server/plugin/quest/SheepShearer.class new file mode 100644 index 000000000..f6588e874 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/SheepShearer.class differ diff --git a/CompiledServer/production/Server/plugin/quest/TheKnightsSword.class b/CompiledServer/production/Server/plugin/quest/TheKnightsSword.class new file mode 100644 index 000000000..85207e37c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/TheKnightsSword.class differ diff --git a/CompiledServer/production/Server/plugin/quest/VampireSlayer.class b/CompiledServer/production/Server/plugin/quest/VampireSlayer.class new file mode 100644 index 000000000..84e8fc50c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/VampireSlayer.class differ diff --git a/CompiledServer/production/Server/plugin/quest/WitchsPotion.class b/CompiledServer/production/Server/plugin/quest/WitchsPotion.class new file mode 100644 index 000000000..1fe7d5338 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/WitchsPotion.class differ diff --git a/CompiledServer/production/Server/plugin/quest/WolfWhistle.class b/CompiledServer/production/Server/plugin/quest/WolfWhistle.class new file mode 100644 index 000000000..e476edacb Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/WolfWhistle.class differ diff --git a/CompiledServer/production/Server/plugin/quest/alirescue/LadyKeliDialogue.class b/CompiledServer/production/Server/plugin/quest/alirescue/LadyKeliDialogue.class new file mode 100644 index 000000000..206718ca0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/alirescue/LadyKeliDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/alirescue/LadyKeliNPC.class b/CompiledServer/production/Server/plugin/quest/alirescue/LadyKeliNPC.class new file mode 100644 index 000000000..b966b56fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/alirescue/LadyKeliNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/alirescue/PrinceAliRescue.class b/CompiledServer/production/Server/plugin/quest/alirescue/PrinceAliRescue.class new file mode 100644 index 000000000..02238b9a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/alirescue/PrinceAliRescue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/alirescue/PrinceAliRescuePlugin.class b/CompiledServer/production/Server/plugin/quest/alirescue/PrinceAliRescuePlugin.class new file mode 100644 index 000000000..17b94ca67 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/alirescue/PrinceAliRescuePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/alirescue/WigDyePlugin.class b/CompiledServer/production/Server/plugin/quest/alirescue/WigDyePlugin.class new file mode 100644 index 000000000..5ac1e4026 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/alirescue/WigDyePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceDialogue.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceDialogue.class new file mode 100644 index 000000000..6c4530c25 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$1.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$1.class new file mode 100644 index 000000000..155d80ff4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$2.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$2.class new file mode 100644 index 000000000..5462f7229 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$3.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$3.class new file mode 100644 index 000000000..ab33fd646 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$4.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$4.class new file mode 100644 index 000000000..5459a761d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$5.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$5.class new file mode 100644 index 000000000..cf22f5047 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$5.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$ChickenCatchScene.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$ChickenCatchScene.class new file mode 100644 index 000000000..08942c226 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue$ChickenCatchScene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue.class new file mode 100644 index 000000000..fbb1cec8b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AliceHusbandDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetism.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetism.class new file mode 100644 index 000000000..ab9dd223c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetism.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$1.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$1.class new file mode 100644 index 000000000..d7d7c9104 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$ContainerHandler.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$ContainerHandler.class new file mode 100644 index 000000000..d24ab1d1d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$ContainerHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin$1.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin$1.class new file mode 100644 index 000000000..ea0ce6c6e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin$2.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin$2.class new file mode 100644 index 000000000..205723753 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin.class new file mode 100644 index 000000000..76d8da749 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$HammerMagnetPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$ResearchNoteHandler.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$ResearchNoteHandler.class new file mode 100644 index 000000000..97b01f05b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$ResearchNoteHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$UndeadTreePlugin$1.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$UndeadTreePlugin$1.class new file mode 100644 index 000000000..cf477b10c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$UndeadTreePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$UndeadTreePlugin.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$UndeadTreePlugin.class new file mode 100644 index 000000000..96c47edff Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin$UndeadTreePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin.class new file mode 100644 index 000000000..b7d423bc1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AnimalMagnetismPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AvaDialogue.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AvaDialogue.class new file mode 100644 index 000000000..e646fdb50 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AvaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AvasDevicePlugin$DisableDevicePlugin.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AvasDevicePlugin$DisableDevicePlugin.class new file mode 100644 index 000000000..271c3cb42 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AvasDevicePlugin$DisableDevicePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/AvasDevicePlugin.class b/CompiledServer/production/Server/plugin/quest/animal_mag/AvasDevicePlugin.class new file mode 100644 index 000000000..47e2046fb Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/AvasDevicePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/animal_mag/WitchDialogue.class b/CompiledServer/production/Server/plugin/quest/animal_mag/WitchDialogue.class new file mode 100644 index 000000000..3ece3bf9d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/animal_mag/WitchDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/CertificatePlugin.class b/CompiledServer/production/Server/plugin/quest/arravshield/CertificatePlugin.class new file mode 100644 index 000000000..4d46d756d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/CertificatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/CuratorHaigHalenDialogue.class b/CompiledServer/production/Server/plugin/quest/arravshield/CuratorHaigHalenDialogue.class new file mode 100644 index 000000000..da5b68b18 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/CuratorHaigHalenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/JohnnyBeardNPC.class b/CompiledServer/production/Server/plugin/quest/arravshield/JohnnyBeardNPC.class new file mode 100644 index 000000000..3905258f5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/JohnnyBeardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/JonnytheBeardPlugin.class b/CompiledServer/production/Server/plugin/quest/arravshield/JonnytheBeardPlugin.class new file mode 100644 index 000000000..a352f2e47 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/JonnytheBeardPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/KatrineDialogue.class b/CompiledServer/production/Server/plugin/quest/arravshield/KatrineDialogue.class new file mode 100644 index 000000000..4bff26879 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/KatrineDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/KingRoaldDialogue.class b/CompiledServer/production/Server/plugin/quest/arravshield/KingRoaldDialogue.class new file mode 100644 index 000000000..93f7ba344 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/KingRoaldDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/ReldoDialogue.class b/CompiledServer/production/Server/plugin/quest/arravshield/ReldoDialogue.class new file mode 100644 index 000000000..27c5cdc9a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/ReldoDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/ShieldArravPlugin.class b/CompiledServer/production/Server/plugin/quest/arravshield/ShieldArravPlugin.class new file mode 100644 index 000000000..b3e0d52af Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/ShieldArravPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/ShieldofArrav.class b/CompiledServer/production/Server/plugin/quest/arravshield/ShieldofArrav.class new file mode 100644 index 000000000..73289423d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/ShieldofArrav.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/ShieldofArravBook.class b/CompiledServer/production/Server/plugin/quest/arravshield/ShieldofArravBook.class new file mode 100644 index 000000000..c4a4b63ca Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/ShieldofArravBook.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/StravenDialogue.class b/CompiledServer/production/Server/plugin/quest/arravshield/StravenDialogue.class new file mode 100644 index 000000000..fa5be05cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/StravenDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/arravshield/WeaponsMasterDialogue.class b/CompiledServer/production/Server/plugin/quest/arravshield/WeaponsMasterDialogue.class new file mode 100644 index 000000000..3973a26f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/arravshield/WeaponsMasterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/bkfortress/BKCabbagePlugin.class b/CompiledServer/production/Server/plugin/quest/bkfortress/BKCabbagePlugin.class new file mode 100644 index 000000000..fa2fcdde4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/bkfortress/BKCabbagePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin$1.class b/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin$1.class new file mode 100644 index 000000000..8b4df4a1d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin$2.class b/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin$2.class new file mode 100644 index 000000000..075c7e0c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin.class b/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin.class new file mode 100644 index 000000000..e082291c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/bkfortress/BKFortressPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/bkfortress/BlackKnightsFortress.class b/CompiledServer/production/Server/plugin/quest/bkfortress/BlackKnightsFortress.class new file mode 100644 index 000000000..1549cf20e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/bkfortress/BlackKnightsFortress.class differ diff --git a/CompiledServer/production/Server/plugin/quest/bkfortress/SirAmikVarzeDialogue.class b/CompiledServer/production/Server/plugin/quest/bkfortress/SirAmikVarzeDialogue.class new file mode 100644 index 000000000..a8605831f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/bkfortress/SirAmikVarzeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DSlayerDrainPlugin.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DSlayerDrainPlugin.class new file mode 100644 index 000000000..dd3638198 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DSlayerDrainPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayer$CaptainRovinDialogue.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayer$CaptainRovinDialogue.class new file mode 100644 index 000000000..1d11b8777 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayer$CaptainRovinDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayer.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayer.class new file mode 100644 index 000000000..9d92366d6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayer.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DarkWizardNPC.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DarkWizardNPC.class new file mode 100644 index 000000000..66a80bd96 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DarkWizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithDialoguePlugin$1.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithDialoguePlugin$1.class new file mode 100644 index 000000000..1a9c056da Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithDialoguePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithDialoguePlugin.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithDialoguePlugin.class new file mode 100644 index 000000000..84b316dde Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithNPC.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithNPC.class new file mode 100644 index 000000000..9aea78c5f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DelrithNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DenathDialogue$1.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DenathDialogue$1.class new file mode 100644 index 000000000..688a136ea Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DenathDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DenathDialogue.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DenathDialogue.class new file mode 100644 index 000000000..0578624a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene$DenathDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene.class new file mode 100644 index 000000000..90715846e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerPlugin.class b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerPlugin.class new file mode 100644 index 000000000..2ba8fe239 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/DemonSlayerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue$1.class b/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue$1.class new file mode 100644 index 000000000..e38905212 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue$2.class b/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue$2.class new file mode 100644 index 000000000..c8b906460 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue.class b/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue.class new file mode 100644 index 000000000..48a89b1be Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/GypsyArisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/SirPyrsinDialogue$1.class b/CompiledServer/production/Server/plugin/quest/demonslayer/SirPyrsinDialogue$1.class new file mode 100644 index 000000000..c934c2721 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/SirPyrsinDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/SirPyrsinDialogue.class b/CompiledServer/production/Server/plugin/quest/demonslayer/SirPyrsinDialogue.class new file mode 100644 index 000000000..48a805f3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/SirPyrsinDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/TraibornDialogue$1.class b/CompiledServer/production/Server/plugin/quest/demonslayer/TraibornDialogue$1.class new file mode 100644 index 000000000..df211b164 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/TraibornDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/TraibornDialogue.class b/CompiledServer/production/Server/plugin/quest/demonslayer/TraibornDialogue.class new file mode 100644 index 000000000..4a0fc4e53 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/TraibornDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/demonslayer/WallyCutscenePlugin.class b/CompiledServer/production/Server/plugin/quest/demonslayer/WallyCutscenePlugin.class new file mode 100644 index 000000000..4d2503d9e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/demonslayer/WallyCutscenePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/CrandorMapPlugin.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/CrandorMapPlugin.class new file mode 100644 index 000000000..e11635490 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/CrandorMapPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DSChestDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DSChestDialogue.class new file mode 100644 index 000000000..c9b95da35 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DSChestDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DSMagicDoorPlugin.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DSMagicDoorPlugin.class new file mode 100644 index 000000000..21aaaef0a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DSMagicDoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DSNedNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DSNedNPC.class new file mode 100644 index 000000000..5245e50b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DSNedNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayer$1.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayer$1.class new file mode 100644 index 000000000..bd5a2f6a5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayer$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayer.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayer.class new file mode 100644 index 000000000..2bf043e49 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayer.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$1.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$1.class new file mode 100644 index 000000000..71a6fb752 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$BobingPulse.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$BobingPulse.class new file mode 100644 index 000000000..cdfdda196 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$BobingPulse.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$1.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$1.class new file mode 100644 index 000000000..f628be5a3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$2.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$2.class new file mode 100644 index 000000000..f2aaeca59 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$3.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$3.class new file mode 100644 index 000000000..d672f0e99 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$4.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$4.class new file mode 100644 index 000000000..d24f497d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$5.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$5.class new file mode 100644 index 000000000..09bd07c21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$5.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$6.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$6.class new file mode 100644 index 000000000..7bda7e386 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue$6.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue.class new file mode 100644 index 000000000..47cd3f950 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene$DSNedDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene.class new file mode 100644 index 000000000..887c15d29 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerPlugin.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerPlugin.class new file mode 100644 index 000000000..bb99e4c1f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DragonSlayerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/DukeHoracioDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/DukeHoracioDialogue.class new file mode 100644 index 000000000..8d120984d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/DukeHoracioDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$1.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$1.class new file mode 100644 index 000000000..9a7e259c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$2.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$2.class new file mode 100644 index 000000000..e884ff429 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$3.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$3.class new file mode 100644 index 000000000..878bde2fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$ElvargCombatSwingHandler.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$ElvargCombatSwingHandler.class new file mode 100644 index 000000000..53961ed17 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC$ElvargCombatSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC.class new file mode 100644 index 000000000..90e0630b8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/ElvargNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/GuildmasterDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/GuildmasterDialogue.class new file mode 100644 index 000000000..7eb622f7b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/GuildmasterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeDemonNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeDemonNPC.class new file mode 100644 index 000000000..cb4c72af3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeDemonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeGhostNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeGhostNPC.class new file mode 100644 index 000000000..52d876d48 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeGhostNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeSkeletonNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeSkeletonNPC.class new file mode 100644 index 000000000..077315656 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeSkeletonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeZombieNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeZombieNPC.class new file mode 100644 index 000000000..499284b81 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/MazeZombieNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/MeldarMadNPC$MeldarSwingHandler.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/MeldarMadNPC$MeldarSwingHandler.class new file mode 100644 index 000000000..a189f2884 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/MeldarMadNPC$MeldarSwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/MeldarMadNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/MeldarMadNPC.class new file mode 100644 index 000000000..b9b2a598d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/MeldarMadNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/NedDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/NedDialogue.class new file mode 100644 index 000000000..91fc33d92 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/NedDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/OziachDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/OziachDialogue.class new file mode 100644 index 000000000..ec03efe59 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/OziachDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/WormbrainDialogue.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/WormbrainDialogue.class new file mode 100644 index 000000000..b85791e36 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/WormbrainDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/WormbrainNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/WormbrainNPC.class new file mode 100644 index 000000000..735bd76c7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/WormbrainNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dragonslayer/ZombieRatNPC.class b/CompiledServer/production/Server/plugin/quest/dragonslayer/ZombieRatNPC.class new file mode 100644 index 000000000..e674f7fc5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dragonslayer/ZombieRatNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin$1.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin$1.class new file mode 100644 index 000000000..5502fa80a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin$CannonBallPulse.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin$CannonBallPulse.class new file mode 100644 index 000000000..1bc4bb9c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin$CannonBallPulse.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin.class new file mode 100644 index 000000000..4a278fdaf Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CannonBallPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/CaptainLawgofDialogue.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CaptainLawgofDialogue.class new file mode 100644 index 000000000..c11a2ea58 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CaptainLawgofDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/CaptainLawgofNPC.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CaptainLawgofNPC.class new file mode 100644 index 000000000..08a3c435f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/CaptainLawgofNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannon.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannon.class new file mode 100644 index 000000000..aaf61a345 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannon.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$1.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$1.class new file mode 100644 index 000000000..e3138ebb8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$2$1.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$2$1.class new file mode 100644 index 000000000..36acb1d3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$2.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$2.class new file mode 100644 index 000000000..084636778 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$3.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$3.class new file mode 100644 index 000000000..5dfb141e1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$4.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$4.class new file mode 100644 index 000000000..06e271e37 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$1.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$1.class new file mode 100644 index 000000000..4520944af Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$Part.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$Part.class new file mode 100644 index 000000000..1ac341edb Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$Part.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$Tool.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$Tool.class new file mode 100644 index 000000000..1c4157129 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler$Tool.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler.class new file mode 100644 index 000000000..be79b9818 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin$ToolKitHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin.class new file mode 100644 index 000000000..71c784e34 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/DwarfCannonPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/LollkDialogue.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/LollkDialogue.class new file mode 100644 index 000000000..0fe1a6914 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/LollkDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/dwarfcannon/NulodionDialogue.class b/CompiledServer/production/Server/plugin/quest/dwarfcannon/NulodionDialogue.class new file mode 100644 index 000000000..c3b8543c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/dwarfcannon/NulodionDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene$GoblinGeneralDialogue$1.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene$GoblinGeneralDialogue$1.class new file mode 100644 index 000000000..042a82769 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene$GoblinGeneralDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene$GoblinGeneralDialogue.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene$GoblinGeneralDialogue.class new file mode 100644 index 000000000..fdb05178b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene$GoblinGeneralDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene.class new file mode 100644 index 000000000..75ba37f84 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GDiplomacyCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacy.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacy.class new file mode 100644 index 000000000..5d81cfef8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacy.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin$Dyes.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin$Dyes.class new file mode 100644 index 000000000..4d405d605 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin$Dyes.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin$GoblinMail.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin$GoblinMail.class new file mode 100644 index 000000000..6d04f411c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin$GoblinMail.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin.class new file mode 100644 index 000000000..43b98aac1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin$GoblinMailPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin.class new file mode 100644 index 000000000..18a56969d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GoblinDiplomacyPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GrubFoot.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GrubFoot.class new file mode 100644 index 000000000..b4f7c7751 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GrubFoot.class differ diff --git a/CompiledServer/production/Server/plugin/quest/gdiplomacy/GrubfootDialogue.class b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GrubfootDialogue.class new file mode 100644 index 000000000..aad440239 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/gdiplomacy/GrubfootDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/icthlarinslittlehelper/WandererDialogue.class b/CompiledServer/production/Server/plugin/quest/icthlarinslittlehelper/WandererDialogue.class new file mode 100644 index 000000000..0fb6c422a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/icthlarinslittlehelper/WandererDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$1.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$1.class new file mode 100644 index 000000000..6d8f1dc5b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$1$1.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$1$1.class new file mode 100644 index 000000000..e158bc1c5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$1.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$1.class new file mode 100644 index 000000000..c85f512c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$2$1.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$2$1.class new file mode 100644 index 000000000..9fa59e8e6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$2.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$2.class new file mode 100644 index 000000000..a7389838f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective.class new file mode 100644 index 000000000..1c578bb2f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion$JungleObjective.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion.class new file mode 100644 index 000000000..5f2c72638 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotion.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotionPlugin$JogreCavernDialogue.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotionPlugin$JogreCavernDialogue.class new file mode 100644 index 000000000..e7a681094 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotionPlugin$JogreCavernDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotionPlugin.class b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotionPlugin.class new file mode 100644 index 000000000..c6b22c38e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/JunglePotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/junglepot/TrufitusDialogue.class b/CompiledServer/production/Server/plugin/quest/junglepot/TrufitusDialogue.class new file mode 100644 index 000000000..0ddfeea43 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/junglepot/TrufitusDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/learningtheropes/CellarMapZone.class b/CompiledServer/production/Server/plugin/quest/learningtheropes/CellarMapZone.class new file mode 100644 index 000000000..f0cafc971 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/learningtheropes/CellarMapZone.class differ diff --git a/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene$1.class b/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene$1.class new file mode 100644 index 000000000..eb7b334f5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene$FightPulse.class b/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene$FightPulse.class new file mode 100644 index 000000000..e60f0935f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene$FightPulse.class differ diff --git a/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene.class b/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene.class new file mode 100644 index 000000000..55228f18b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/learningtheropes/LTRDragonFightCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/learningtheropes/SirVantDialogue.class b/CompiledServer/production/Server/plugin/quest/learningtheropes/SirVantDialogue.class new file mode 100644 index 000000000..3368eb58f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/learningtheropes/SirVantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/DramenStaffPlugin.class b/CompiledServer/production/Server/plugin/quest/lostcity/DramenStaffPlugin.class new file mode 100644 index 000000000..8253f276f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/DramenStaffPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/LostCity.class b/CompiledServer/production/Server/plugin/quest/lostcity/LostCity.class new file mode 100644 index 000000000..309498d14 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/LostCity.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/LostCityPlugin$1.class b/CompiledServer/production/Server/plugin/quest/lostcity/LostCityPlugin$1.class new file mode 100644 index 000000000..1041a1df0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/LostCityPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/LostCityPlugin.class b/CompiledServer/production/Server/plugin/quest/lostcity/LostCityPlugin.class new file mode 100644 index 000000000..a1846ce14 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/LostCityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/ShamusDialogue.class b/CompiledServer/production/Server/plugin/quest/lostcity/ShamusDialogue.class new file mode 100644 index 000000000..47aece0ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/ShamusDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/TreeSpiritNPC.class b/CompiledServer/production/Server/plugin/quest/lostcity/TreeSpiritNPC.class new file mode 100644 index 000000000..8bb995a63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/TreeSpiritNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/lostcity/WarriorDialogue.class b/CompiledServer/production/Server/plugin/quest/lostcity/WarriorDialogue.class new file mode 100644 index 000000000..39997af25 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/lostcity/WarriorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/ArheinShopDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/ArheinShopDialogue.class new file mode 100644 index 000000000..e7c1832c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/ArheinShopDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/BeggarDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/BeggarDialogue.class new file mode 100644 index 000000000..8f5bd1fbd Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/BeggarDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/CandleMakerDialogue$1.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/CandleMakerDialogue$1.class new file mode 100644 index 000000000..e6be689fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/CandleMakerDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/CandleMakerDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/CandleMakerDialogue.class new file mode 100644 index 000000000..de88f7024 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/CandleMakerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/CrateCutscenePlugin.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/CrateCutscenePlugin.class new file mode 100644 index 000000000..1e079552e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/CrateCutscenePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/KingArthurDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/KingArthurDialogue.class new file mode 100644 index 000000000..6b8a2020b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/KingArthurDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystal.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystal.class new file mode 100644 index 000000000..141ce3b3d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystal.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalOptionPlugin.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalOptionPlugin.class new file mode 100644 index 000000000..a106e49ce Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$1.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$1.class new file mode 100644 index 000000000..50148670a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$BeggarNPC.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$BeggarNPC.class new file mode 100644 index 000000000..897a2eef2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$BeggarNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$MerlinCrystalDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$MerlinCrystalDialogue.class new file mode 100644 index 000000000..8437e20ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$MerlinCrystalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$MerlinCrystalItemHandler.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$MerlinCrystalItemHandler.class new file mode 100644 index 000000000..78a899e0a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$MerlinCrystalItemHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$ThrantaxNPC.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$ThrantaxNPC.class new file mode 100644 index 000000000..fb302ac22 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin$ThrantaxNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin.class new file mode 100644 index 000000000..4ae3d8df9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/MerlinCrystalPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/SirKayDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirKayDialogue.class new file mode 100644 index 000000000..b255c8791 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirKayDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/SirLancelotDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirLancelotDialogue.class new file mode 100644 index 000000000..5237d387a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirLancelotDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/SirLucan.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirLucan.class new file mode 100644 index 000000000..09f8e8d4a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirLucan.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/SirMordredNPC$1.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirMordredNPC$1.class new file mode 100644 index 000000000..0f37215af Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirMordredNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/SirMordredNPC.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirMordredNPC.class new file mode 100644 index 000000000..d26c1b7b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirMordredNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/SirPalomedes.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirPalomedes.class new file mode 100644 index 000000000..8f9e47f2a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/SirPalomedes.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/TheLadyOfTheLake.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/TheLadyOfTheLake.class new file mode 100644 index 000000000..af7ca9225 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/TheLadyOfTheLake.class differ diff --git a/CompiledServer/production/Server/plugin/quest/merlincrystal/ThrantaxDialogue.class b/CompiledServer/production/Server/plugin/quest/merlincrystal/ThrantaxDialogue.class new file mode 100644 index 000000000..d72bd3dda Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/merlincrystal/ThrantaxDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/DakhThoulanAegisDialogue.class b/CompiledServer/production/Server/plugin/quest/mini/surok/DakhThoulanAegisDialogue.class new file mode 100644 index 000000000..d508f3f3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/DakhThoulanAegisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/HuntForSurokPlugin.class b/CompiledServer/production/Server/plugin/quest/mini/surok/HuntForSurokPlugin.class new file mode 100644 index 000000000..386a10022 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/HuntForSurokPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/MishkalunDornDialogue.class b/CompiledServer/production/Server/plugin/quest/mini/surok/MishkalunDornDialogue.class new file mode 100644 index 000000000..a01231fb4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/MishkalunDornDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/SilasDahcsnuDialogue.class b/CompiledServer/production/Server/plugin/quest/mini/surok/SilasDahcsnuDialogue.class new file mode 100644 index 000000000..c320f7b82 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/SilasDahcsnuDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue$SurokCutscene$SurokScene.class b/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue$SurokCutscene$SurokScene.class new file mode 100644 index 000000000..128b98ded Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue$SurokCutscene$SurokScene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue$SurokCutscene.class b/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue$SurokCutscene.class new file mode 100644 index 000000000..22da6b23b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue$SurokCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue.class b/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue.class new file mode 100644 index 000000000..d417639d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/mini/surok/SurokMagisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasure.class b/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasure.class new file mode 100644 index 000000000..3928036f5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasure.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasurePlugin$TreasureDigPlugin.class b/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasurePlugin$TreasureDigPlugin.class new file mode 100644 index 000000000..d850f27d4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasurePlugin$TreasureDigPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasurePlugin.class b/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasurePlugin.class new file mode 100644 index 000000000..36f4d78f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/ptreasure/PiratesTreasurePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/restlessghost/OldCronDialogue.class b/CompiledServer/production/Server/plugin/quest/restlessghost/OldCronDialogue.class new file mode 100644 index 000000000..6d8897c75 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/restlessghost/OldCronDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/restlessghost/RestlessGhost.class b/CompiledServer/production/Server/plugin/quest/restlessghost/RestlessGhost.class new file mode 100644 index 000000000..0d02d042c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/restlessghost/RestlessGhost.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/ElunedDialogue.class b/CompiledServer/production/Server/plugin/quest/rovingelves/ElunedDialogue.class new file mode 100644 index 000000000..848b4da76 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/ElunedDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/IslwynDialogue.class b/CompiledServer/production/Server/plugin/quest/rovingelves/IslwynDialogue.class new file mode 100644 index 000000000..67c4336b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/IslwynDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/MossGiantGuardianNPC$1.class b/CompiledServer/production/Server/plugin/quest/rovingelves/MossGiantGuardianNPC$1.class new file mode 100644 index 000000000..b436433bb Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/MossGiantGuardianNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/MossGiantGuardianNPC.class b/CompiledServer/production/Server/plugin/quest/rovingelves/MossGiantGuardianNPC.class new file mode 100644 index 000000000..8e77287f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/MossGiantGuardianNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElves.class b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElves.class new file mode 100644 index 000000000..a21de5388 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElves.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesObstacles.class b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesObstacles.class new file mode 100644 index 000000000..190033b0a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesObstacles.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesPlugin$1.class b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesPlugin$1.class new file mode 100644 index 000000000..ec6d92c3f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesPlugin.class b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesPlugin.class new file mode 100644 index 000000000..9178beb1f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/rovingelves/RovingElvesPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/AlShabimDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/AlShabimDialogue.class new file mode 100644 index 000000000..5c3e13cc4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/AlShabimDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$1.class new file mode 100644 index 000000000..8bc1ea666 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$AnaBarrelHandler.class b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$AnaBarrelHandler.class new file mode 100644 index 000000000..6e5f6be7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$AnaBarrelHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$AnaNPC.class b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$AnaNPC.class new file mode 100644 index 000000000..689a62e4a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue$AnaNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue.class new file mode 100644 index 000000000..e0dbdfd9c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/AnaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/BedabinNomadDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/BedabinNomadDialogue.class new file mode 100644 index 000000000..7b98d75cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/BedabinNomadDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/CaptainSiadDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/CaptainSiadDialogue.class new file mode 100644 index 000000000..880faf1c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/CaptainSiadDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue$DesertGuardNPC$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue$DesertGuardNPC$1.class new file mode 100644 index 000000000..3ab89cd26 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue$DesertGuardNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue$DesertGuardNPC.class b/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue$DesertGuardNPC.class new file mode 100644 index 000000000..a2d5f251c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue$DesertGuardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue.class new file mode 100644 index 000000000..e47fdd2f6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/DesertGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/IrenaDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/IrenaDialogue.class new file mode 100644 index 000000000..1a916cd1a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/IrenaDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MaleSlaveDialogue$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/MaleSlaveDialogue$1.class new file mode 100644 index 000000000..9bdbc9be5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MaleSlaveDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MaleSlaveDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/MaleSlaveDialogue.class new file mode 100644 index 000000000..73cfa07a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MaleSlaveDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryCaptainDialogue$MercenaryCaptain.class b/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryCaptainDialogue$MercenaryCaptain.class new file mode 100644 index 000000000..df268ebe6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryCaptainDialogue$MercenaryCaptain.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryCaptainDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryCaptainDialogue.class new file mode 100644 index 000000000..fff1af7b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryCaptainDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryDialogue.class new file mode 100644 index 000000000..66b0d8f28 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MercenaryDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MineSlaveNPC.class b/CompiledServer/production/Server/plugin/quest/touristrap/MineSlaveNPC.class new file mode 100644 index 000000000..814ec752d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MineSlaveNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MinecartDriverDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/MinecartDriverDialogue.class new file mode 100644 index 000000000..bbd7c1aa4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MinecartDriverDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MiningCampZone$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/MiningCampZone$1.class new file mode 100644 index 000000000..89a9ee450 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MiningCampZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/MiningCampZone.class b/CompiledServer/production/Server/plugin/quest/touristrap/MiningCampZone.class new file mode 100644 index 000000000..03475adfb Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/MiningCampZone.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/RowdySlaveNPC$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/RowdySlaveNPC$1.class new file mode 100644 index 000000000..b4e5ad912 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/RowdySlaveNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/RowdySlaveNPC.class b/CompiledServer/production/Server/plugin/quest/touristrap/RowdySlaveNPC.class new file mode 100644 index 000000000..4b6c31a8a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/RowdySlaveNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrap$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrap$1.class new file mode 100644 index 000000000..82d59fb89 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrap$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrap.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrap.class new file mode 100644 index 000000000..927be237e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrap.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$1.class new file mode 100644 index 000000000..fa9e2aac3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$2.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$2.class new file mode 100644 index 000000000..f6007cc21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$3.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$3.class new file mode 100644 index 000000000..82891ec7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$4.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$4.class new file mode 100644 index 000000000..da5643537 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$5.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$5.class new file mode 100644 index 000000000..946858305 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$5.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$6.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$6.class new file mode 100644 index 000000000..24f509458 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$6.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$1.class new file mode 100644 index 000000000..82273aa3e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$AnnaCartCutscene$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$AnnaCartCutscene$1.class new file mode 100644 index 000000000..23b76122c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$AnnaCartCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$AnnaCartCutscene.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$AnnaCartCutscene.class new file mode 100644 index 000000000..63bd1e71d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler$AnnaCartCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler.class new file mode 100644 index 000000000..8313e0598 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$AnnaCartHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BarrelDialogue$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BarrelDialogue$1.class new file mode 100644 index 000000000..f3aad0d9d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BarrelDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BarrelDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BarrelDialogue.class new file mode 100644 index 000000000..75f676c0c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BarrelDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$AnnaWinchHandler.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$AnnaWinchHandler.class new file mode 100644 index 000000000..0eb54d328 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$AnnaWinchHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$BedabinAnvilDialogue$ProtoTypePulse.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$BedabinAnvilDialogue$ProtoTypePulse.class new file mode 100644 index 000000000..309bd92ae Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$BedabinAnvilDialogue$ProtoTypePulse.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$BedabinAnvilDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$BedabinAnvilDialogue.class new file mode 100644 index 000000000..34530a9c3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$BedabinAnvilDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$PrototypeDartHandler$ProtoTypeDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$PrototypeDartHandler$ProtoTypeDialogue.class new file mode 100644 index 000000000..4d65178f8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$PrototypeDartHandler$ProtoTypeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$PrototypeDartHandler.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$PrototypeDartHandler.class new file mode 100644 index 000000000..26de22fef Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler$PrototypeDartHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler.class new file mode 100644 index 000000000..e919fc913 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinAnvilHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinKeyHandler.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinKeyHandler.class new file mode 100644 index 000000000..b3914b3ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$BedabinKeyHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$CartDialogue$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$CartDialogue$1.class new file mode 100644 index 000000000..f8283b080 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$CartDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$CartDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$CartDialogue.class new file mode 100644 index 000000000..16a9ebfa8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$CartDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$1.class new file mode 100644 index 000000000..020fe3c63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$MiningCartCutscene$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$MiningCartCutscene$1.class new file mode 100644 index 000000000..12dd752ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$MiningCartCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$MiningCartCutscene.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$MiningCartCutscene.class new file mode 100644 index 000000000..aac98ba70 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue$MiningCartCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue.class new file mode 100644 index 000000000..61683fbe5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$MineCartDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchCutscene$1.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchCutscene$1.class new file mode 100644 index 000000000..9b90f89ce Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchCutscene.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchCutscene.class new file mode 100644 index 000000000..64e24fa58 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchDialogue.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchDialogue.class new file mode 100644 index 000000000..e8cca17d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin$WinchDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin.class b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin.class new file mode 100644 index 000000000..a9c442ffc Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/touristrap/TouristTrapPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/AlmeraDialogue.class b/CompiledServer/production/Server/plugin/quest/waterfall/AlmeraDialogue.class new file mode 100644 index 000000000..5631a31ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/AlmeraDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/BookOnBaxtorianPlugin.class b/CompiledServer/production/Server/plugin/quest/waterfall/BookOnBaxtorianPlugin.class new file mode 100644 index 000000000..a04d6c944 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/BookOnBaxtorianPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/GolrieDialogue.class b/CompiledServer/production/Server/plugin/quest/waterfall/GolrieDialogue.class new file mode 100644 index 000000000..4f0c627e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/GolrieDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/HadleyDialogue.class b/CompiledServer/production/Server/plugin/quest/waterfall/HadleyDialogue.class new file mode 100644 index 000000000..b01b81f10 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/HadleyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/HudonDialogue.class b/CompiledServer/production/Server/plugin/quest/waterfall/HudonDialogue.class new file mode 100644 index 000000000..f2bf7675a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/HudonDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterFall.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterFall.class new file mode 100644 index 000000000..e586b0ce1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterFall.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$1.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$1.class new file mode 100644 index 000000000..d2701b24f Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$2.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$2.class new file mode 100644 index 000000000..afefc6805 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$3.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$3.class new file mode 100644 index 000000000..619aa474b Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$4.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$4.class new file mode 100644 index 000000000..8ececca33 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$1$1.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$1$1.class new file mode 100644 index 000000000..c60e99ae2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$1.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$1.class new file mode 100644 index 000000000..f3328e821 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$2.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$2.class new file mode 100644 index 000000000..8808da195 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$3.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$3.class new file mode 100644 index 000000000..858ce3336 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$4.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$4.class new file mode 100644 index 000000000..ef8a4829e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$5.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$5.class new file mode 100644 index 000000000..e610695b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler$5.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler.class new file mode 100644 index 000000000..9b94abac0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin$WaterfallUseWithHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin.class new file mode 100644 index 000000000..a773c170e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallTreeDialogue$1.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallTreeDialogue$1.class new file mode 100644 index 000000000..0aab807a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallTreeDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallTreeDialogue.class b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallTreeDialogue.class new file mode 100644 index 000000000..e164b1e2a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/waterfall/WaterfallTreeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/AnnaJonesDialogue.class b/CompiledServer/production/Server/plugin/quest/wlbelow/AnnaJonesDialogue.class new file mode 100644 index 000000000..090520b6d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/AnnaJonesDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/KingRoaldNPC.class b/CompiledServer/production/Server/plugin/quest/wlbelow/KingRoaldNPC.class new file mode 100644 index 000000000..478e670c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/KingRoaldNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/OutlawNPC.class b/CompiledServer/production/Server/plugin/quest/wlbelow/OutlawNPC.class new file mode 100644 index 000000000..27f0c0eef Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/OutlawNPC.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/RatBurgissDialogue.class b/CompiledServer/production/Server/plugin/quest/wlbelow/RatBurgissDialogue.class new file mode 100644 index 000000000..0459efd8d Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/RatBurgissDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/SurokMagisDialogue.class b/CompiledServer/production/Server/plugin/quest/wlbelow/SurokMagisDialogue.class new file mode 100644 index 000000000..f3817809a Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/SurokMagisDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$1.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$1.class new file mode 100644 index 000000000..c151f0a7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$2.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$2.class new file mode 100644 index 000000000..75d88ca5c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$2.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$3.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$3.class new file mode 100644 index 000000000..839f28d63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$3.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$4.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$4.class new file mode 100644 index 000000000..e0a165614 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$4.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$5.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$5.class new file mode 100644 index 000000000..5d5d972b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$5.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$6.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$6.class new file mode 100644 index 000000000..6cea4fa86 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene$6.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene.class new file mode 100644 index 000000000..2255112b5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$1.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$1.class new file mode 100644 index 000000000..de08cd808 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$FolderHandler.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$FolderHandler.class new file mode 100644 index 000000000..1ac291384 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$FolderHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$MetalWandHandler.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$MetalWandHandler.class new file mode 100644 index 000000000..fd4a32242 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin$MetalWandHandler.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin.class new file mode 100644 index 000000000..255fa69b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WLBelowPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/quest/wlbelow/WhatLiesBelow.class b/CompiledServer/production/Server/plugin/quest/wlbelow/WhatLiesBelow.class new file mode 100644 index 000000000..785ea158c Binary files /dev/null and b/CompiledServer/production/Server/plugin/quest/wlbelow/WhatLiesBelow.class differ diff --git a/CompiledServer/production/Server/plugin/random/MysteryBoxPlugin.class b/CompiledServer/production/Server/plugin/random/MysteryBoxPlugin.class new file mode 100644 index 000000000..9e18af1a6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/MysteryBoxPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/random/drilldemon/DrillDemonEvent$1.class b/CompiledServer/production/Server/plugin/random/drilldemon/DrillDemonEvent$1.class new file mode 100644 index 000000000..b6981488f Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/drilldemon/DrillDemonEvent$1.class differ diff --git a/CompiledServer/production/Server/plugin/random/drilldemon/DrillDemonEvent.class b/CompiledServer/production/Server/plugin/random/drilldemon/DrillDemonEvent.class new file mode 100644 index 000000000..22f602f65 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/drilldemon/DrillDemonEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/drilldemon/SergeantDamienNPC.class b/CompiledServer/production/Server/plugin/random/drilldemon/SergeantDamienNPC.class new file mode 100644 index 000000000..0be41bd17 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/drilldemon/SergeantDamienNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkDwarfEvent$DrunkDwarfDialogue.class b/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkDwarfEvent$DrunkDwarfDialogue.class new file mode 100644 index 000000000..a04565cea Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkDwarfEvent$DrunkDwarfDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkDwarfEvent.class b/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkDwarfEvent.class new file mode 100644 index 000000000..9885f8eab Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkDwarfEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkenDwarfNPC.class b/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkenDwarfNPC.class new file mode 100644 index 000000000..8e31f02e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/drunkdwarf/DrunkenDwarfNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenNPC$1.class b/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenNPC$1.class new file mode 100644 index 000000000..0fb93793b Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenNPC.class b/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenNPC.class new file mode 100644 index 000000000..0a7cd625c Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenRandomEvent.class b/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenRandomEvent.class new file mode 100644 index 000000000..91e45757e Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/evilchicken/EvilChickenRandomEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$1.class b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$1.class new file mode 100644 index 000000000..05455bc5c Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$1.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$2.class b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$2.class new file mode 100644 index 000000000..94a5d317d Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$2.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$3.class b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$3.class new file mode 100644 index 000000000..fcfe5755d Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$3.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$4.class b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$4.class new file mode 100644 index 000000000..79f0f82ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent$4.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent.class b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent.class new file mode 100644 index 000000000..9b6cdf6ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/EvilTwinRandomEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/MollyDialogue.class b/CompiledServer/production/Server/plugin/random/eviltwin/MollyDialogue.class new file mode 100644 index 000000000..2a969e7db Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/MollyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/random/eviltwin/TwinClothColor.class b/CompiledServer/production/Server/plugin/random/eviltwin/TwinClothColor.class new file mode 100644 index 000000000..f169d14ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/eviltwin/TwinClothColor.class differ diff --git a/CompiledServer/production/Server/plugin/random/genie/GenieNPC.class b/CompiledServer/production/Server/plugin/random/genie/GenieNPC.class new file mode 100644 index 000000000..c028d4c63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/genie/GenieNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/genie/GenieRandomEvent$GenieDialogue.class b/CompiledServer/production/Server/plugin/random/genie/GenieRandomEvent$GenieDialogue.class new file mode 100644 index 000000000..5fe60a6f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/genie/GenieRandomEvent$GenieDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/random/genie/GenieRandomEvent.class b/CompiledServer/production/Server/plugin/random/genie/GenieRandomEvent.class new file mode 100644 index 000000000..114607e73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/genie/GenieRandomEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent$1$1.class b/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent$1$1.class new file mode 100644 index 000000000..8d7647d73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent$1.class b/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent$1.class new file mode 100644 index 000000000..b8ee62ad5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent$1.class differ diff --git a/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent.class b/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent.class new file mode 100644 index 000000000..685afebc7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/lostandfound/LostFoundRandomEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandEvent$CapnHandDialogue.class b/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandEvent$CapnHandDialogue.class new file mode 100644 index 000000000..d6d828ecf Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandEvent$CapnHandDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandEvent.class b/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandEvent.class new file mode 100644 index 000000000..9313a29e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandNPC.class b/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandNPC.class new file mode 100644 index 000000000..1b80201e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/lostpirate/CapnHandNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterDialogue$QuizSet.class b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterDialogue$QuizSet.class new file mode 100644 index 000000000..6448486be Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterDialogue$QuizSet.class differ diff --git a/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterDialogue.class b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterDialogue.class new file mode 100644 index 000000000..80ef394e3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterEvent.class b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterEvent.class new file mode 100644 index 000000000..f6dbc4c09 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterNPC.class b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterNPC.class new file mode 100644 index 000000000..67e951824 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/quizmaster/QuizMasterNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineEvent$RickTurpentineDialogue.class b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineEvent$RickTurpentineDialogue.class new file mode 100644 index 000000000..5c8eb4d6e Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineEvent$RickTurpentineDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineEvent.class b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineEvent.class new file mode 100644 index 000000000..7d01d792f Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineNPC$1.class b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineNPC$1.class new file mode 100644 index 000000000..050f411e1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineNPC.class b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineNPC.class new file mode 100644 index 000000000..195c6a5b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/rickturpentine/RickTurpentineNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/rivertroll/RiverTrollEvent.class b/CompiledServer/production/Server/plugin/random/rivertroll/RiverTrollEvent.class new file mode 100644 index 000000000..afc2d4afe Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/rivertroll/RiverTrollEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/rivertroll/RiverTrollNPC.class b/CompiledServer/production/Server/plugin/random/rivertroll/RiverTrollNPC.class new file mode 100644 index 000000000..fb99bc18d Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/rivertroll/RiverTrollNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/shade/ShadeEvent.class b/CompiledServer/production/Server/plugin/random/shade/ShadeEvent.class new file mode 100644 index 000000000..bb97f4edd Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/shade/ShadeEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/shade/ShadeNPC.class b/CompiledServer/production/Server/plugin/random/shade/ShadeNPC.class new file mode 100644 index 000000000..401f55d05 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/shade/ShadeNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/treespirit/TreeSpiritEvent.class b/CompiledServer/production/Server/plugin/random/treespirit/TreeSpiritEvent.class new file mode 100644 index 000000000..c19f93585 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/treespirit/TreeSpiritEvent.class differ diff --git a/CompiledServer/production/Server/plugin/random/treespirit/TreeSpiritRandomNPC.class b/CompiledServer/production/Server/plugin/random/treespirit/TreeSpiritRandomNPC.class new file mode 100644 index 000000000..7581b5b08 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/treespirit/TreeSpiritRandomNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/zombie/ZombieAmeNPC.class b/CompiledServer/production/Server/plugin/random/zombie/ZombieAmeNPC.class new file mode 100644 index 000000000..874d859eb Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/zombie/ZombieAmeNPC.class differ diff --git a/CompiledServer/production/Server/plugin/random/zombie/ZombieEvent.class b/CompiledServer/production/Server/plugin/random/zombie/ZombieEvent.class new file mode 100644 index 000000000..56cb2ec54 Binary files /dev/null and b/CompiledServer/production/Server/plugin/random/zombie/ZombieEvent.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$1.class b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$1.class new file mode 100644 index 000000000..87c0e647b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$2.class b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$2.class new file mode 100644 index 000000000..630aebaa1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$BarbarianGuardDialogue.class b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$BarbarianGuardDialogue.class new file mode 100644 index 000000000..83733f858 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse$BarbarianGuardDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse.class b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse.class new file mode 100644 index 000000000..701784420 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/BarbarianOutpostCourse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/GnomeStrongholdCourse.class b/CompiledServer/production/Server/plugin/skill/agility/GnomeStrongholdCourse.class new file mode 100644 index 000000000..6de9e9e84 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/GnomeStrongholdCourse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$1.class b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$1.class new file mode 100644 index 000000000..919f55e1c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$2.class b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$2.class new file mode 100644 index 000000000..63adbb8f2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$3.class b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$3.class new file mode 100644 index 000000000..409341aef Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$4.class b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$4.class new file mode 100644 index 000000000..fcef5bc6f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$4.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$5.class b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$5.class new file mode 100644 index 000000000..057cb15c8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse$5.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse.class b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse.class new file mode 100644 index 000000000..c2a7ede4b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/WildernessCourse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BladeTrap$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BladeTrap$1.class new file mode 100644 index 000000000..80a0d5985 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BladeTrap$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BladeTrap.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BladeTrap.class new file mode 100644 index 000000000..c536686a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BladeTrap.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena$1.class new file mode 100644 index 000000000..7d54dd372 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena$PlankSet.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena$PlankSet.class new file mode 100644 index 000000000..d62a4775d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena$PlankSet.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena.class new file mode 100644 index 000000000..0f829a33d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenArena.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$1.class new file mode 100644 index 000000000..e85b5f154 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$2.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$2.class new file mode 100644 index 000000000..73db42cfb Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$3.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$3.class new file mode 100644 index 000000000..971810cea Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$4.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$4.class new file mode 100644 index 000000000..e559302c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$4.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$5.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$5.class new file mode 100644 index 000000000..eb9222599 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$5.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$6.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$6.class new file mode 100644 index 000000000..5d0da69b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$6.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$7.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$7.class new file mode 100644 index 000000000..22a002727 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$7.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$8.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$8.class new file mode 100644 index 000000000..b1768b415 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse$8.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse.class new file mode 100644 index 000000000..2a1e94ea5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/BrimhavenCourse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/DartTrap$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/DartTrap$1.class new file mode 100644 index 000000000..f52088334 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/DartTrap$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/DartTrap.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/DartTrap.class new file mode 100644 index 000000000..eb4c9cbdc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/DartTrap.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/FloorSpikes$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/FloorSpikes$1.class new file mode 100644 index 000000000..cf6c5f2bf Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/FloorSpikes$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/FloorSpikes.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/FloorSpikes.class new file mode 100644 index 000000000..015cc9723 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/FloorSpikes.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/PressurePad$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/PressurePad$1.class new file mode 100644 index 000000000..85b1ac0ab Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/PressurePad$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/PressurePad.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/PressurePad.class new file mode 100644 index 000000000..a130f369d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/PressurePad.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/SpinningBlades$1.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/SpinningBlades$1.class new file mode 100644 index 000000000..51ccf73e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/SpinningBlades$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/brimhaven/SpinningBlades.class b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/SpinningBlades.class new file mode 100644 index 000000000..24be00b62 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/brimhaven/SpinningBlades.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$1.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$1.class new file mode 100644 index 000000000..0502f6f58 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$2.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$2.class new file mode 100644 index 000000000..31a1f6c72 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$3.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$3.class new file mode 100644 index 000000000..6c56dc5fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$4.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$4.class new file mode 100644 index 000000000..997fe0245 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$4.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$5.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$5.class new file mode 100644 index 000000000..298a236fc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse$5.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse.class new file mode 100644 index 000000000..771ad59fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidCourse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidZone.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidZone.class new file mode 100644 index 000000000..beb7d6d97 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/AgilityPyramidZone.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$1.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$1.class new file mode 100644 index 000000000..7ba81312e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$2.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$2.class new file mode 100644 index 000000000..91aac9506 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$MovingBlockTrap.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$MovingBlockTrap.class new file mode 100644 index 000000000..e6547caa4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC$MovingBlockTrap.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC.class new file mode 100644 index 000000000..ff5bf4ec0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/MovingBlockNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$1.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$1.class new file mode 100644 index 000000000..4b77e8440 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$2.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$2.class new file mode 100644 index 000000000..a0c555dd0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$3.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$3.class new file mode 100644 index 000000000..f083d5951 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$BlockSets.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$BlockSets.class new file mode 100644 index 000000000..226789448 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock$BlockSets.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock.class b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock.class new file mode 100644 index 000000000..c96a7ce0b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/pyramid/RollingBlock.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/AlKharidPitShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/AlKharidPitShortcut.class new file mode 100644 index 000000000..12579290d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/AlKharidPitShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/BarSqueezeShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/BarSqueezeShortcut.class new file mode 100644 index 000000000..18f2caa63 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/BarSqueezeShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/CrumblingWallShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/CrumblingWallShortcut.class new file mode 100644 index 000000000..057113e74 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/CrumblingWallShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/FenceJumpShortcut$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/FenceJumpShortcut$1.class new file mode 100644 index 000000000..7cab7287b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/FenceJumpShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/FenceJumpShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/FenceJumpShortcut.class new file mode 100644 index 000000000..29813721b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/FenceJumpShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/LogBalanceShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/LogBalanceShortcut.class new file mode 100644 index 000000000..49f782a88 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/LogBalanceShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/MonkeyBarShortcut$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/MonkeyBarShortcut$1.class new file mode 100644 index 000000000..bc73efc31 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/MonkeyBarShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/MonkeyBarShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/MonkeyBarShortcut.class new file mode 100644 index 000000000..3213402c7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/MonkeyBarShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/PipeShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/PipeShortcut.class new file mode 100644 index 000000000..213a26f38 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/PipeShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/RockClimbShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/RockClimbShortcut.class new file mode 100644 index 000000000..b8251f94a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/RockClimbShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/SteppingStoneShortcut$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/SteppingStoneShortcut$1.class new file mode 100644 index 000000000..ceb5084c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/SteppingStoneShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/SteppingStoneShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/SteppingStoneShortcut.class new file mode 100644 index 000000000..ccbf7699c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/SteppingStoneShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$1.class new file mode 100644 index 000000000..f2d28c4e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$2$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$2$1.class new file mode 100644 index 000000000..59348ff59 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$2.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$2.class new file mode 100644 index 000000000..9dc5dbb53 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut.class new file mode 100644 index 000000000..18729f61d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StileShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut$1.class new file mode 100644 index 000000000..518c09418 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut$2.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut$2.class new file mode 100644 index 000000000..14976c2b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut.class new file mode 100644 index 000000000..167c0fb3e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/StrangeFloorShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut$1.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut$1.class new file mode 100644 index 000000000..e0d831a93 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut$2.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut$2.class new file mode 100644 index 000000000..e912e9b57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut.class new file mode 100644 index 000000000..18223ae31 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/TunnelShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/agility/shortcuts/ZanarisSqueezeShortcut.class b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/ZanarisSqueezeShortcut.class new file mode 100644 index 000000000..b88a22a18 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/agility/shortcuts/ZanarisSqueezeShortcut.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin$1.class new file mode 100644 index 000000000..e7b268ef6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin$RemoveDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin$RemoveDialogue.class new file mode 100644 index 000000000..fa31b487d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin$RemoveDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin.class new file mode 100644 index 000000000..32d7a698d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/BuildOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/BuildRoomDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/BuildRoomDialogue.class new file mode 100644 index 000000000..d5084ee62 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/BuildRoomDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/ConstructionGuideBook.class b/CompiledServer/production/Server/plugin/skill/construction/ConstructionGuideBook.class new file mode 100644 index 000000000..a1bffb93a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/ConstructionGuideBook.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/ConstructionInterface.class b/CompiledServer/production/Server/plugin/skill/construction/ConstructionInterface.class new file mode 100644 index 000000000..daa95a65d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/ConstructionInterface.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/EstateAgentDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/EstateAgentDialogue.class new file mode 100644 index 000000000..88ecafd6c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/EstateAgentDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin$PortalDialogue$1.class b/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin$PortalDialogue$1.class new file mode 100644 index 000000000..46394ce3a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin$PortalDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin$PortalDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin$PortalDialogue.class new file mode 100644 index 000000000..5c5bb65a9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin$PortalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin.class new file mode 100644 index 000000000..a82f24a6f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/PortalOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/RemovalDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/RemovalDialogue.class new file mode 100644 index 000000000..632670646 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/RemovalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/BeerBarrelPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/BeerBarrelPlugin.class new file mode 100644 index 000000000..ff56a4346 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/BeerBarrelPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/ChairBenchPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/ChairBenchPlugin$1.class new file mode 100644 index 000000000..9eb4396ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/ChairBenchPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/ChairBenchPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/ChairBenchPlugin.class new file mode 100644 index 000000000..c6019abc4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/ChairBenchPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/ConstructionDoorPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/ConstructionDoorPlugin.class new file mode 100644 index 000000000..7d2acef08 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/ConstructionDoorPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/FireplacePlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/FireplacePlugin$1.class new file mode 100644 index 000000000..97f9174b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/FireplacePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/FireplacePlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/FireplacePlugin.class new file mode 100644 index 000000000..a8c91341f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/FireplacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$BuildDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$BuildDialogue.class new file mode 100644 index 000000000..1b6e0e468 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$BuildDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder$1.class new file mode 100644 index 000000000..ef2f9b0b4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder$2.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder$2.class new file mode 100644 index 000000000..6618faa78 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder.class new file mode 100644 index 000000000..779b02ed8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin$ClimbPohLadder.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin.class new file mode 100644 index 000000000..b38bbde0d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/StaircasePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/bedroom/ClockPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/bedroom/ClockPlugin.class new file mode 100644 index 000000000..8f9391692 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/bedroom/ClockPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/BoneOfferPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/BoneOfferPlugin$1.class new file mode 100644 index 000000000..5d7a9a199 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/BoneOfferPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/BoneOfferPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/BoneOfferPlugin.class new file mode 100644 index 000000000..db1b9e2c4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/BoneOfferPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/TorchLightPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/TorchLightPlugin.class new file mode 100644 index 000000000..dd4af26b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/chapel/TorchLightPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/combatroom/CombatRing.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/combatroom/CombatRing.class new file mode 100644 index 000000000..7397fd7d8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/combatroom/CombatRing.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/costume/ToyBoxPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/costume/ToyBoxPlugin.class new file mode 100644 index 000000000..8a1edf702 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/costume/ToyBoxPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/BeerBarrelPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/BeerBarrelPlugin.class new file mode 100644 index 000000000..471eba4f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/BeerBarrelPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/LarderPlugin$LarderDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/LarderPlugin$LarderDialogue.class new file mode 100644 index 000000000..3bd8d0867 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/LarderPlugin$LarderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/LarderPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/LarderPlugin.class new file mode 100644 index 000000000..1ca5283e3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/LarderPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/ShelfPlugin$ShelfDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/ShelfPlugin$ShelfDialogue.class new file mode 100644 index 000000000..3c860dee4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/ShelfPlugin$ShelfDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/ShelfPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/ShelfPlugin.class new file mode 100644 index 000000000..93a14f9d7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/kitchen/ShelfPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin$DirectPortalDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin$DirectPortalDialogue.class new file mode 100644 index 000000000..1e51cb4d7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin$DirectPortalDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin$Locations.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin$Locations.class new file mode 100644 index 000000000..60455820b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin$Locations.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin.class new file mode 100644 index 000000000..c519215cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/portalchamber/PortalChamberPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin$1.class new file mode 100644 index 000000000..86ae26305 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin$2.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin$2.class new file mode 100644 index 000000000..910e1a1b7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin.class new file mode 100644 index 000000000..57aca5172 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/questhall/MountedGloryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$1.class new file mode 100644 index 000000000..bca546720 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabButton.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabButton.class new file mode 100644 index 000000000..4056f32bc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabButton.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabInterface$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabInterface$1.class new file mode 100644 index 000000000..cdacd4056 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabInterface$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabInterface.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabInterface.class new file mode 100644 index 000000000..72982f65f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin$TeleTabInterface.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin.class new file mode 100644 index 000000000..52d5df082 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/study/LecternPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$1.class new file mode 100644 index 000000000..5590a2c73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$ClockmakerBenchDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$ClockmakerBenchDialogue.class new file mode 100644 index 000000000..ca3b8d2e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$ClockmakerBenchDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$Craftable.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$Craftable.class new file mode 100644 index 000000000..773ed2b9a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin$Craftable.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin.class new file mode 100644 index 000000000..7dc3488b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ClockmakersBenchPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$1.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$1.class new file mode 100644 index 000000000..765d4e78c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$ToolDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$ToolDialogue.class new file mode 100644 index 000000000..f6b74a967 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$ToolDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$ToolStore.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$ToolStore.class new file mode 100644 index 000000000..93920b0e4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin$ToolStore.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin.class new file mode 100644 index 000000000..37d641e75 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/decoration/workshop/ToolsPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$1.class b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$1.class new file mode 100644 index 000000000..29fa973c3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$2.class b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$2.class new file mode 100644 index 000000000..740826eb7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$3.class b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$3.class new file mode 100644 index 000000000..96fb5176c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue.class b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue.class new file mode 100644 index 000000000..6423de834 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantPlugin.class new file mode 100644 index 000000000..408015f9b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/HouseServantPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/StonemasonPlugin$SupplyStore.class b/CompiledServer/production/Server/plugin/skill/construction/npc/StonemasonPlugin$SupplyStore.class new file mode 100644 index 000000000..af976a7d2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/StonemasonPlugin$SupplyStore.class differ diff --git a/CompiledServer/production/Server/plugin/skill/construction/npc/StonemasonPlugin.class b/CompiledServer/production/Server/plugin/skill/construction/npc/StonemasonPlugin.class new file mode 100644 index 000000000..d30b1f0cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/construction/npc/StonemasonPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/CakeMakingPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/CakeMakingPlugin.class new file mode 100644 index 000000000..f0a1cae02 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/CakeMakingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/CoconutMakePlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/CoconutMakePlugin.class new file mode 100644 index 000000000..ec0ffa1d1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/CoconutMakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/CookingDialoguePlugin$1.class b/CompiledServer/production/Server/plugin/skill/cooking/CookingDialoguePlugin$1.class new file mode 100644 index 000000000..da160744f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/CookingDialoguePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/CookingDialoguePlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/CookingDialoguePlugin.class new file mode 100644 index 000000000..6165324f6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/CookingDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/CookingPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/CookingPlugin.class new file mode 100644 index 000000000..24daa01aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/CookingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/CookingRecipePlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/CookingRecipePlugin.class new file mode 100644 index 000000000..f088689e5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/CookingRecipePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/FireOptionPotteryPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/FireOptionPotteryPlugin.class new file mode 100644 index 000000000..79d2f77c7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/FireOptionPotteryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/MakeDoughPlugin$MakeDoughDialogue.class b/CompiledServer/production/Server/plugin/skill/cooking/MakeDoughPlugin$MakeDoughDialogue.class new file mode 100644 index 000000000..ca48994a1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/MakeDoughPlugin$MakeDoughDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/MakeDoughPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/MakeDoughPlugin.class new file mode 100644 index 000000000..c184f946c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/MakeDoughPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/MakeStewPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/MakeStewPlugin.class new file mode 100644 index 000000000..8d2a61dd1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/MakeStewPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/NettleTeaPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/NettleTeaPlugin.class new file mode 100644 index 000000000..4bbfa576d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/NettleTeaPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/NettleWaterPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/NettleWaterPlugin.class new file mode 100644 index 000000000..93d38c5af Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/NettleWaterPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/PieShellPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/PieShellPlugin.class new file mode 100644 index 000000000..f7332c40a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/PieShellPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/SkeweredFoodPlugin$SkeweredSet.class b/CompiledServer/production/Server/plugin/skill/cooking/SkeweredFoodPlugin$SkeweredSet.class new file mode 100644 index 000000000..4e23b304c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/SkeweredFoodPlugin$SkeweredSet.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/SkeweredFoodPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/SkeweredFoodPlugin.class new file mode 100644 index 000000000..a551e98c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/SkeweredFoodPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/WatermelonSlicePlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/WatermelonSlicePlugin.class new file mode 100644 index 000000000..7fa96d193 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/WatermelonSlicePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/cooking/WineFermentPlugin.class b/CompiledServer/production/Server/plugin/skill/cooking/WineFermentPlugin.class new file mode 100644 index 000000000..95ff6a2e0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/cooking/WineFermentPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/AmuletStringingPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/AmuletStringingPlugin.class new file mode 100644 index 000000000..728d91ae1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/AmuletStringingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/BattlestaveMakePlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/BattlestaveMakePlugin.class new file mode 100644 index 000000000..aa25b24b2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/BattlestaveMakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/BullseyeLanternPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/BullseyeLanternPlugin.class new file mode 100644 index 000000000..b9f64af3f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/BullseyeLanternPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/GemCutPlugin$1.class b/CompiledServer/production/Server/plugin/skill/crafting/GemCutPlugin$1.class new file mode 100644 index 000000000..8d3a72c48 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/GemCutPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/GemCutPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/GemCutPlugin.class new file mode 100644 index 000000000..f968db47e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/GemCutPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/JewelleryCraftPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/JewelleryCraftPlugin.class new file mode 100644 index 000000000..9bd24ed6a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/JewelleryCraftPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/MoltenGlassMakePlugin$MoltenGlassPulse.class b/CompiledServer/production/Server/plugin/skill/crafting/MoltenGlassMakePlugin$MoltenGlassPulse.class new file mode 100644 index 000000000..cdaca2522 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/MoltenGlassMakePlugin$MoltenGlassPulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/MoltenGlassMakePlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/MoltenGlassMakePlugin.class new file mode 100644 index 000000000..95696db3e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/MoltenGlassMakePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$1.class b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$1.class new file mode 100644 index 000000000..2cb512082 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin$1.class b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin$1.class new file mode 100644 index 000000000..43073716b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin$FireUseHandler.class b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin$FireUseHandler.class new file mode 100644 index 000000000..9c2ea869f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin$FireUseHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin.class new file mode 100644 index 000000000..122daf115 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin$FireOvenPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin.class new file mode 100644 index 000000000..5f224081a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/PotteryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/SilverStringingPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/SilverStringingPlugin.class new file mode 100644 index 000000000..f71e4bff4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/SilverStringingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/SnakeSkinPlugin$1.class b/CompiledServer/production/Server/plugin/skill/crafting/SnakeSkinPlugin$1.class new file mode 100644 index 000000000..a7beaf75b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/SnakeSkinPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/SnakeSkinPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/SnakeSkinPlugin.class new file mode 100644 index 000000000..7cf5b999b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/SnakeSkinPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/SnelmCraftPlugin$SnelmCraftPulse.class b/CompiledServer/production/Server/plugin/skill/crafting/SnelmCraftPlugin$SnelmCraftPulse.class new file mode 100644 index 000000000..51fba99ae Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/SnelmCraftPlugin$SnelmCraftPulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/SnelmCraftPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/SnelmCraftPlugin.class new file mode 100644 index 000000000..465c22fc3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/SnelmCraftPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/StitchCraftPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/StitchCraftPlugin.class new file mode 100644 index 000000000..55512cb4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/StitchCraftPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$1.class b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$1.class new file mode 100644 index 000000000..188022a95 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$StudArmourPulse.class b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$StudArmourPulse.class new file mode 100644 index 000000000..6d9b2a766 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$StudArmourPulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$StuddedArmour.class b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$StuddedArmour.class new file mode 100644 index 000000000..9d0909d2f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin$StuddedArmour.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin.class new file mode 100644 index 000000000..8e1fb22e0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/StuddedArmourPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$1.class new file mode 100644 index 000000000..3110c7088 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$WeavePulse.class b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$WeavePulse.class new file mode 100644 index 000000000..1ddb2e1b3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$WeavePulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$WeavingItem.class b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$WeavingItem.class new file mode 100644 index 000000000..697eb4668 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin$WeavingItem.class differ diff --git a/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin.class new file mode 100644 index 000000000..53bacdd21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/crafting/WeaveOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$HaySackPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$HaySackPlugin.class new file mode 100644 index 000000000..dea03d703 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$HaySackPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$ItemHolderPlugin$ItemHolderHandler.class b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$ItemHolderPlugin$ItemHolderHandler.class new file mode 100644 index 000000000..b2372ea03 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$ItemHolderPlugin$ItemHolderHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$ItemHolderPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$ItemHolderPlugin.class new file mode 100644 index 000000000..8cad85bff Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin$ItemHolderPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin.class new file mode 100644 index 000000000..c9e0ba055 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmHolderPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$1.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$1.class new file mode 100644 index 000000000..e1f524dc8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin$CompostBucketPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin$CompostBucketPlugin.class new file mode 100644 index 000000000..e7ced7545 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin$CompostBucketPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin$CompostOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin$CompostOptionPlugin.class new file mode 100644 index 000000000..e4b39973a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin$CompostOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin.class new file mode 100644 index 000000000..4621eaf79 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$CompostPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmToolPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmToolPlugin.class new file mode 100644 index 000000000..313396750 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmToolPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore$1.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore$1.class new file mode 100644 index 000000000..490e740d9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore$2.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore$2.class new file mode 100644 index 000000000..797edf462 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore.class new file mode 100644 index 000000000..150ca3b75 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$FarmingEquipmentStore.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PlantSeedPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PlantSeedPlugin.class new file mode 100644 index 000000000..a0a370331 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PlantSeedPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PotSaplingPlugin$PotWateringPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PotSaplingPlugin$PotWateringPlugin.class new file mode 100644 index 000000000..795f98b09 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PotSaplingPlugin$PotWateringPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PotSaplingPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PotSaplingPlugin.class new file mode 100644 index 000000000..1b668f723 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$PotSaplingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$ScarecrowPlugin$ScarecrowBuildHandler.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$ScarecrowPlugin$ScarecrowBuildHandler.class new file mode 100644 index 000000000..e4e0b27ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$ScarecrowPlugin$ScarecrowBuildHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$ScarecrowPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$ScarecrowPlugin.class new file mode 100644 index 000000000..bb40349b5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin$ScarecrowPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin.class new file mode 100644 index 000000000..c3c8892d7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/FarmingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$Gardener.class b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$Gardener.class new file mode 100644 index 000000000..048dc6832 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$Gardener.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$GardenerDialogue.class b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$GardenerDialogue.class new file mode 100644 index 000000000..3c2bd5c32 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$GardenerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$ShopItem.class b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$ShopItem.class new file mode 100644 index 000000000..998766b76 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin$ShopItem.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin.class new file mode 100644 index 000000000..499b6f5b5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/GardenerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin$BankNotePlugin.class b/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin$BankNotePlugin.class new file mode 100644 index 000000000..ca4191c9f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin$BankNotePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin$ToolLeprechaunDialogue.class b/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin$ToolLeprechaunDialogue.class new file mode 100644 index 000000000..c19e1b308 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin$ToolLeprechaunDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin.class b/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin.class new file mode 100644 index 000000000..baac47385 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/farming/ToolLeprachaunPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/firemaking/FireMakingOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/firemaking/FireMakingOptionPlugin.class new file mode 100644 index 000000000..ffa5e2e91 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/firemaking/FireMakingOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/firemaking/LightLogPlugin.class b/CompiledServer/production/Server/plugin/skill/firemaking/LightLogPlugin.class new file mode 100644 index 000000000..bfd248119 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/firemaking/LightLogPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fishing/FishingOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/fishing/FishingOptionPlugin.class new file mode 100644 index 000000000..13b392b48 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fishing/FishingOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/ArrowCreatePlugin$1.class b/CompiledServer/production/Server/plugin/skill/fletching/ArrowCreatePlugin$1.class new file mode 100644 index 000000000..49c057d19 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/ArrowCreatePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/ArrowCreatePlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/ArrowCreatePlugin.class new file mode 100644 index 000000000..3d6413cd6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/ArrowCreatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/BoltCreatePlugin$1.class b/CompiledServer/production/Server/plugin/skill/fletching/BoltCreatePlugin$1.class new file mode 100644 index 000000000..fbc87a1a3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/BoltCreatePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/BoltCreatePlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/BoltCreatePlugin.class new file mode 100644 index 000000000..df9cb0174 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/BoltCreatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/BoltGemPlugin$1.class b/CompiledServer/production/Server/plugin/skill/fletching/BoltGemPlugin$1.class new file mode 100644 index 000000000..ef81c8317 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/BoltGemPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/BoltGemPlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/BoltGemPlugin.class new file mode 100644 index 000000000..acae92af5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/BoltGemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/DartCreatePlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/DartCreatePlugin.class new file mode 100644 index 000000000..91a8a14f4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/DartCreatePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/FletchingPlugin$1.class b/CompiledServer/production/Server/plugin/skill/fletching/FletchingPlugin$1.class new file mode 100644 index 000000000..1181a0e15 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/FletchingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/FletchingPlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/FletchingPlugin.class new file mode 100644 index 000000000..24cf0b8e1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/FletchingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/GemBoltPlugin$1.class b/CompiledServer/production/Server/plugin/skill/fletching/GemBoltPlugin$1.class new file mode 100644 index 000000000..78060e271 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/GemBoltPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/GemBoltPlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/GemBoltPlugin.class new file mode 100644 index 000000000..84e90fe68 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/GemBoltPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/MakeCrossbowPlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/MakeCrossbowPlugin.class new file mode 100644 index 000000000..fa194fb3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/MakeCrossbowPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/MithGrapplePlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/MithGrapplePlugin.class new file mode 100644 index 000000000..141c489cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/MithGrapplePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/fletching/StringbowPlugin.class b/CompiledServer/production/Server/plugin/skill/fletching/StringbowPlugin.class new file mode 100644 index 000000000..b3de44c14 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/fletching/StringbowPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/gather/GatheringSkillOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/gather/GatheringSkillOptionPlugin.class new file mode 100644 index 000000000..e2c18f350 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/gather/GatheringSkillOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/BarbarianMixPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/BarbarianMixPlugin.class new file mode 100644 index 000000000..114c8e5fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/BarbarianMixPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/FinishedPotionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/herblore/FinishedPotionPlugin$1.class new file mode 100644 index 000000000..52f1d06d3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/FinishedPotionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/FinishedPotionPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/FinishedPotionPlugin.class new file mode 100644 index 000000000..5de8cc144 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/FinishedPotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/GrindItemPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/GrindItemPlugin.class new file mode 100644 index 000000000..8e378e3fd Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/GrindItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/HerbCleanPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/HerbCleanPlugin.class new file mode 100644 index 000000000..ab522260f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/HerbCleanPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/HerbTarPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/HerbTarPlugin.class new file mode 100644 index 000000000..6a5401095 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/HerbTarPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/MakeSuperCombatPotionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/herblore/MakeSuperCombatPotionPlugin$1.class new file mode 100644 index 000000000..8ae7cd180 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/MakeSuperCombatPotionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/MakeSuperCombatPotionPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/MakeSuperCombatPotionPlugin.class new file mode 100644 index 000000000..4e0e00138 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/MakeSuperCombatPotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/PotionDecantingPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/PotionDecantingPlugin.class new file mode 100644 index 000000000..0c1d68ef1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/PotionDecantingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/UnfinishedPotionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/herblore/UnfinishedPotionPlugin$1.class new file mode 100644 index 000000000..773ae675a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/UnfinishedPotionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/herblore/UnfinishedPotionPlugin.class b/CompiledServer/production/Server/plugin/skill/herblore/UnfinishedPotionPlugin.class new file mode 100644 index 000000000..de83c92cc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/herblore/UnfinishedPotionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin$FalconryPlugin$1.class b/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin$FalconryPlugin$1.class new file mode 100644 index 000000000..8e1a0eff9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin$FalconryPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin$FalconryPlugin.class b/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin$FalconryPlugin.class new file mode 100644 index 000000000..dbd59bce3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin$FalconryPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin.class b/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin.class new file mode 100644 index 000000000..698f78803 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/FalconryActivityPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterNPC.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterNPC.class new file mode 100644 index 000000000..c4d7dcbbc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$1.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$1.class new file mode 100644 index 000000000..4166e6a27 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin$ReleaseType$1.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin$ReleaseType$1.class new file mode 100644 index 000000000..880106271 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin$ReleaseType$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin$ReleaseType.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin$ReleaseType.class new file mode 100644 index 000000000..2ac6d1134 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin$ReleaseType.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin.class new file mode 100644 index 000000000..b72257aab Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterNetPlugin.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterNetPlugin.class new file mode 100644 index 000000000..b6fbe59b6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HunterNetPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HuntingItemUseWithHandler.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HuntingItemUseWithHandler.class new file mode 100644 index 000000000..c8b5dec21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin$HuntingItemUseWithHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin.class b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin.class new file mode 100644 index 000000000..f2cf735ee Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/HunterPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin$ImpBoxDialogue.class b/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin$ImpBoxDialogue.class new file mode 100644 index 000000000..81587b87d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin$ImpBoxDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin$ImpInterfaceHandler.class b/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin$ImpInterfaceHandler.class new file mode 100644 index 000000000..47b020d8b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin$ImpInterfaceHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin.class b/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin.class new file mode 100644 index 000000000..e38955c83 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/hunter/ImpBoxPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/ChargeOrbSpells$ChargeOrbPulse.class b/CompiledServer/production/Server/plugin/skill/magic/ChargeOrbSpells$ChargeOrbPulse.class new file mode 100644 index 000000000..a2140b4a8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/ChargeOrbSpells$ChargeOrbPulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/ChargeOrbSpells.class b/CompiledServer/production/Server/plugin/skill/magic/ChargeOrbSpells.class new file mode 100644 index 000000000..ae14c4fc8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/ChargeOrbSpells.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/ChargeSpell.class b/CompiledServer/production/Server/plugin/skill/magic/ChargeSpell.class new file mode 100644 index 000000000..f3dda3cb5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/ChargeSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/EnchantCrossbowSpell.class b/CompiledServer/production/Server/plugin/skill/magic/EnchantCrossbowSpell.class new file mode 100644 index 000000000..a48505bf8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/EnchantCrossbowSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/ModernTeleportPlugin.class b/CompiledServer/production/Server/plugin/skill/magic/ModernTeleportPlugin.class new file mode 100644 index 000000000..45691907f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/ModernTeleportPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/SuperheatSpell.class b/CompiledServer/production/Server/plugin/skill/magic/SuperheatSpell.class new file mode 100644 index 000000000..92568d389 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/SuperheatSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/TeleblockSpell.class b/CompiledServer/production/Server/plugin/skill/magic/TeleblockSpell.class new file mode 100644 index 000000000..b9099e57c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/TeleblockSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/TeleotherSpells$1.class b/CompiledServer/production/Server/plugin/skill/magic/TeleotherSpells$1.class new file mode 100644 index 000000000..3441c5107 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/TeleotherSpells$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/TeleotherSpells.class b/CompiledServer/production/Server/plugin/skill/magic/TeleotherSpells.class new file mode 100644 index 000000000..5067ca533 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/TeleotherSpells.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/ancient/AncientTeleportPlugin.class b/CompiledServer/production/Server/plugin/skill/magic/ancient/AncientTeleportPlugin.class new file mode 100644 index 000000000..81f5b3a01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/ancient/AncientTeleportPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/BakePieSpell$LunarPiePulse.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/BakePieSpell$LunarPiePulse.class new file mode 100644 index 000000000..a3320a65b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/BakePieSpell$LunarPiePulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/BakePieSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/BakePieSpell.class new file mode 100644 index 000000000..a0069054c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/BakePieSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/CureGroupSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/CureGroupSpell.class new file mode 100644 index 000000000..f238f9756 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/CureGroupSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/CureMeSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/CureMeSpell.class new file mode 100644 index 000000000..1524af8d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/CureMeSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/CureOtherSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/CureOtherSpell.class new file mode 100644 index 000000000..3553f57ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/CureOtherSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/CurePlantSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/CurePlantSpell.class new file mode 100644 index 000000000..17f8c525d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/CurePlantSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell$1.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell$1.class new file mode 100644 index 000000000..c4bb90314 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell$2.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell$2.class new file mode 100644 index 000000000..49557fe3d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell.class new file mode 100644 index 000000000..b9807a7e9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/DreamSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/EnergyTransferSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/EnergyTransferSpell.class new file mode 100644 index 000000000..79361e8a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/EnergyTransferSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/FertileSoilSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/FertileSoilSpell.class new file mode 100644 index 000000000..9c97e32ef Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/FertileSoilSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/HealSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/HealSpell.class new file mode 100644 index 000000000..bdce33f38 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/HealSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/HumidifySpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/HumidifySpell.class new file mode 100644 index 000000000..3ce42e6ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/HumidifySpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/HunterKitSpell$1.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/HunterKitSpell$1.class new file mode 100644 index 000000000..23e4701c5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/HunterKitSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/HunterKitSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/HunterKitSpell.class new file mode 100644 index 000000000..52aff1d62 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/HunterKitSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/LunarTeleportPlugin.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/LunarTeleportPlugin.class new file mode 100644 index 000000000..e476231fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/LunarTeleportPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/MagicImbueSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/MagicImbueSpell.class new file mode 100644 index 000000000..c4803a163 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/MagicImbueSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/MonsterExamineSpell$1.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/MonsterExamineSpell$1.class new file mode 100644 index 000000000..fa22f42e5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/MonsterExamineSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/MonsterExamineSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/MonsterExamineSpell.class new file mode 100644 index 000000000..f670c8dfe Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/MonsterExamineSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell$1.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell$1.class new file mode 100644 index 000000000..8f1731048 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell$NPCContact.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell$NPCContact.class new file mode 100644 index 000000000..5caf52995 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell$NPCContact.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell.class new file mode 100644 index 000000000..7dc42b975 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/NPContactSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/PlankMeSpell$Plank.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/PlankMeSpell$Plank.class new file mode 100644 index 000000000..9621c770d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/PlankMeSpell$Plank.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/PlankMeSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/PlankMeSpell.class new file mode 100644 index 000000000..ebca2d261 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/PlankMeSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/SpellbookSwapSpell$1.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/SpellbookSwapSpell$1.class new file mode 100644 index 000000000..c7bb1af00 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/SpellbookSwapSpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/SpellbookSwapSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/SpellbookSwapSpell.class new file mode 100644 index 000000000..5f419a9ca Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/SpellbookSwapSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/StatBoostSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatBoostSpell.class new file mode 100644 index 000000000..f3b7a8239 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatBoostSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/StatRestoreSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatRestoreSpell.class new file mode 100644 index 000000000..08bfdeb21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatRestoreSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/StatSpySpell$1.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatSpySpell$1.class new file mode 100644 index 000000000..ce1de5902 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatSpySpell$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/StatSpySpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatSpySpell.class new file mode 100644 index 000000000..74d1b2286 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/StatSpySpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/StringJewellerySpell$LunarStringPulse.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/StringJewellerySpell$LunarStringPulse.class new file mode 100644 index 000000000..7319aa28c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/StringJewellerySpell$LunarStringPulse.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/StringJewellerySpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/StringJewellerySpell.class new file mode 100644 index 000000000..1d59bfbd5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/StringJewellerySpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/SuperglassMakeSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/SuperglassMakeSpell.class new file mode 100644 index 000000000..f60c5f5d9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/SuperglassMakeSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/magic/lunar/VengeanceSpell.class b/CompiledServer/production/Server/plugin/skill/magic/lunar/VengeanceSpell.class new file mode 100644 index 000000000..c47e5fd43 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/magic/lunar/VengeanceSpell.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/BoneBuryingOptionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/prayer/BoneBuryingOptionPlugin$1.class new file mode 100644 index 000000000..3a68025b0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/BoneBuryingOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/BoneBuryingOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/prayer/BoneBuryingOptionPlugin.class new file mode 100644 index 000000000..f2b80901b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/BoneBuryingOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$1.class b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$1.class new file mode 100644 index 000000000..491b343fe Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar$1.class b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar$1.class new file mode 100644 index 000000000..3d5b90319 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar$2.class b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar$2.class new file mode 100644 index 000000000..379bd6643 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar.class b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar.class new file mode 100644 index 000000000..bb1f069f5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin$Altar.class differ diff --git a/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin.class b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin.class new file mode 100644 index 000000000..3e9dc9b47 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/prayer/PrayerAltarPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/CombinationRunePlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/CombinationRunePlugin.class new file mode 100644 index 000000000..b9bd412b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/CombinationRunePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/EnchantTiaraPlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/EnchantTiaraPlugin.class new file mode 100644 index 000000000..d0145db57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/EnchantTiaraPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/MysteriousRuinPlugin$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/MysteriousRuinPlugin$1.class new file mode 100644 index 000000000..9267b9e5d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/MysteriousRuinPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/MysteriousRuinPlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/MysteriousRuinPlugin.class new file mode 100644 index 000000000..d560ea33b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/MysteriousRuinPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/RunePouchPlugin$RunePouchItem.class b/CompiledServer/production/Server/plugin/skill/runecrafting/RunePouchPlugin$RunePouchItem.class new file mode 100644 index 000000000..9c8d1b02b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/RunePouchPlugin$RunePouchItem.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/RunePouchPlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/RunePouchPlugin.class new file mode 100644 index 000000000..daaad6bf6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/RunePouchPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/RunecraftingPlugin$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/RunecraftingPlugin$1.class new file mode 100644 index 000000000..756f65b49 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/RunecraftingPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/RunecraftingPlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/RunecraftingPlugin.class new file mode 100644 index 000000000..650dd9600 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/RunecraftingPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/TiaraPlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/TiaraPlugin.class new file mode 100644 index 000000000..6f093505e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/TiaraPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$1.class new file mode 100644 index 000000000..a0c89d0a5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$1$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$1$1.class new file mode 100644 index 000000000..61ee70e3a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$1.class new file mode 100644 index 000000000..ab0831cd9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$2$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$2$1.class new file mode 100644 index 000000000..7f6355236 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$2.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$2.class new file mode 100644 index 000000000..be5248a4d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$3$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$3$1.class new file mode 100644 index 000000000..4d3111d9d Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$3$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$3.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$3.class new file mode 100644 index 000000000..7c53f86bf Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$4$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$4$1.class new file mode 100644 index 000000000..5383784d5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$4$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$4.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$4.class new file mode 100644 index 000000000..cb8291154 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$4.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$5$1.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$5$1.class new file mode 100644 index 000000000..3e161fc41 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$5$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$5.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$5.class new file mode 100644 index 000000000..1a4fca883 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$5.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$6.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$6.class new file mode 100644 index 000000000..d55478606 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle$6.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle.class new file mode 100644 index 000000000..9a289b755 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin$AbbysalObstacle.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin.class new file mode 100644 index 000000000..01fa61e00 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssalNPC.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssalNPC.class new file mode 100644 index 000000000..f0530d0db Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/AbyssalNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/DarkMageDialogue.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/DarkMageDialogue.class new file mode 100644 index 000000000..c7dc2f427 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/DarkMageDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/ZamorakMageDialogue.class b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/ZamorakMageDialogue.class new file mode 100644 index 000000000..5557747db Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/runecrafting/abyss/ZamorakMageDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/AberrantSpectreNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/AberrantSpectreNPC$1.class new file mode 100644 index 000000000..f0d8466e5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/AberrantSpectreNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/AberrantSpectreNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/AberrantSpectreNPC.class new file mode 100644 index 000000000..1c418d0d0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/AberrantSpectreNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/AbyssalDemonNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/AbyssalDemonNPC$1.class new file mode 100644 index 000000000..69e03bf29 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/AbyssalDemonNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/AbyssalDemonNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/AbyssalDemonNPC.class new file mode 100644 index 000000000..5ff20df1a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/AbyssalDemonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BansheeNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/BansheeNPC$1.class new file mode 100644 index 000000000..e704e8e5e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BansheeNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BansheeNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/BansheeNPC.class new file mode 100644 index 000000000..1893759f6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BansheeNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BasiliskNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/BasiliskNPC.class new file mode 100644 index 000000000..4c0254b0e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BasiliskNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BrutalDragonNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/BrutalDragonNPC.class new file mode 100644 index 000000000..cbc8fade7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BrutalDragonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BugSwarmNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/BugSwarmNPC.class new file mode 100644 index 000000000..abcc9ff7b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BugSwarmNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin$1.class b/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin$1.class new file mode 100644 index 000000000..8b1dfb6ac Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin$LightLanternPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin$LightLanternPlugin.class new file mode 100644 index 000000000..a81a4273f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin$LightLanternPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin.class new file mode 100644 index 000000000..0a404d5ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/BuglanternPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/CaveBugNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/CaveBugNPC.class new file mode 100644 index 000000000..b0539b023 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/CaveBugNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/CaveHorrorNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/CaveHorrorNPC$1.class new file mode 100644 index 000000000..65d12b2aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/CaveHorrorNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/CaveHorrorNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/CaveHorrorNPC.class new file mode 100644 index 000000000..cfc8808c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/CaveHorrorNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/CockatriceNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/CockatriceNPC.class new file mode 100644 index 000000000..076cb760f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/CockatriceNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin$DezertLizardNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin$DezertLizardNPC.class new file mode 100644 index 000000000..139b57d5f Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin$DezertLizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin$IcecoolerPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin$IcecoolerPlugin.class new file mode 100644 index 000000000..13b9f3b24 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin$IcecoolerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin.class new file mode 100644 index 000000000..753b9d304 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/DesertLizardPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/DustDevilNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/DustDevilNPC$1.class new file mode 100644 index 000000000..bed072551 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/DustDevilNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/DustDevilNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/DustDevilNPC.class new file mode 100644 index 000000000..05dba59f1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/DustDevilNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/EnchantedGemDialogue.class b/CompiledServer/production/Server/plugin/skill/slayer/EnchantedGemDialogue.class new file mode 100644 index 000000000..65455de4a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/EnchantedGemDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$FishingExplosiveHandler$1.class b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$FishingExplosiveHandler$1.class new file mode 100644 index 000000000..2a1b7c00b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$FishingExplosiveHandler$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$FishingExplosiveHandler.class b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$FishingExplosiveHandler.class new file mode 100644 index 000000000..b8af15bf1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$FishingExplosiveHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$MogreNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$MogreNPC.class new file mode 100644 index 000000000..fdba3b29a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin$MogreNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin.class new file mode 100644 index 000000000..3c5195028 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/FishingExplosivePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/GargoyleNPC$RockHammerHandler.class b/CompiledServer/production/Server/plugin/skill/slayer/GargoyleNPC$RockHammerHandler.class new file mode 100644 index 000000000..8fee333ca Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/GargoyleNPC$RockHammerHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/GargoyleNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/GargoyleNPC.class new file mode 100644 index 000000000..3d1837c25 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/GargoyleNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/InfernalMageNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/InfernalMageNPC.class new file mode 100644 index 000000000..e493a8c68 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/InfernalMageNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/KuraskNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/KuraskNPC.class new file mode 100644 index 000000000..a55bad8f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/KuraskNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/MithrilDragonNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/MithrilDragonNPC$1.class new file mode 100644 index 000000000..15dfd8e02 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/MithrilDragonNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/MithrilDragonNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/MithrilDragonNPC.class new file mode 100644 index 000000000..cc04d697b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/MithrilDragonNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/NechryaelNPC$DeathSpawnNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/NechryaelNPC$DeathSpawnNPC.class new file mode 100644 index 000000000..18a434e85 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/NechryaelNPC$DeathSpawnNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/NechryaelNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/NechryaelNPC.class new file mode 100644 index 000000000..bde97862e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/NechryaelNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin$RockSlugNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin$RockSlugNPC.class new file mode 100644 index 000000000..5bbc33f3b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin$RockSlugNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin$SaltBagHandler.class b/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin$SaltBagHandler.class new file mode 100644 index 000000000..47a017602 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin$SaltBagHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin.class new file mode 100644 index 000000000..3fcd5fc43 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/RockSlugPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SkeletalWyvernNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/SkeletalWyvernNPC.class new file mode 100644 index 000000000..be13c24e7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SkeletalWyvernNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerMasterDialogue.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerMasterDialogue.class new file mode 100644 index 000000000..2afc2f46b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerMasterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerPlugin$1.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerPlugin$1.class new file mode 100644 index 000000000..a703612f7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerPlugin.class new file mode 100644 index 000000000..ac6b592aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerHelmCraftPlugin$1.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerHelmCraftPlugin$1.class new file mode 100644 index 000000000..69f9e6aa8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerHelmCraftPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerHelmCraftPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerHelmCraftPlugin.class new file mode 100644 index 000000000..ab3d85e0c Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerHelmCraftPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerMasterPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerMasterPlugin.class new file mode 100644 index 000000000..40b7f6911 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin$SlayerMasterPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin.class new file mode 100644 index 000000000..28ee64872 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerRewardPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerTowerPlugin.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerTowerPlugin.class new file mode 100644 index 000000000..5a8fb95c6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerTowerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/SlayerTowerZone.class b/CompiledServer/production/Server/plugin/skill/slayer/SlayerTowerZone.class new file mode 100644 index 000000000..6abd34557 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/SlayerTowerZone.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/TurothNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/TurothNPC.class new file mode 100644 index 000000000..2537ca40b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/TurothNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/WaterFiendNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/WaterFiendNPC.class new file mode 100644 index 000000000..7d376f133 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/WaterFiendNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$1$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$1$1.class new file mode 100644 index 000000000..3a977f587 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$1.class new file mode 100644 index 000000000..01848433e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$2$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$2$1.class new file mode 100644 index 000000000..657d5a764 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$2$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$2.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$2.class new file mode 100644 index 000000000..34cefa57a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$3.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$3.class new file mode 100644 index 000000000..40dac61bc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern.class new file mode 100644 index 000000000..4c482845e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/AncientCavern.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/FremennikDungeon$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/FremennikDungeon$1.class new file mode 100644 index 000000000..9c9d41239 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/FremennikDungeon$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/FremennikDungeon.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/FremennikDungeon.class new file mode 100644 index 000000000..96d02a118 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/FremennikDungeon.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon$WallBeastNPC$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon$WallBeastNPC$1.class new file mode 100644 index 000000000..a9659e6ae Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon$WallBeastNPC$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon$WallBeastNPC.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon$WallBeastNPC.class new file mode 100644 index 000000000..83b630ec4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon$WallBeastNPC.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon.class new file mode 100644 index 000000000..06e8d5d95 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/LumbridgeDungeon.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon$1.class new file mode 100644 index 000000000..bf2eaaf21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon$2.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon$2.class new file mode 100644 index 000000000..fe91ff02e Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon.class new file mode 100644 index 000000000..137c5d47a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/SmokeDungeon.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$1.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$1.class new file mode 100644 index 000000000..78af1d4de Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$2.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$2.class new file mode 100644 index 000000000..9819bc3dc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$3.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$3.class new file mode 100644 index 000000000..fb27876b7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave.class b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave.class new file mode 100644 index 000000000..a189de613 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/slayer/dungeon/StrongholdSlayerCave.class differ diff --git a/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin$1.class b/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin$1.class new file mode 100644 index 000000000..d82de10a3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin$SmeltUseWithHandler.class b/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin$SmeltUseWithHandler.class new file mode 100644 index 000000000..576397954 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin$SmeltUseWithHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin.class new file mode 100644 index 000000000..a7ac87832 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/smithing/FurnaceOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/ObeliskOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/ObeliskOptionPlugin.class new file mode 100644 index 000000000..8425d2317 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/ObeliskOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin$1.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin$1.class new file mode 100644 index 000000000..1870f2ef5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin$ObeliskHandler.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin$ObeliskHandler.class new file mode 100644 index 000000000..b02b1c22b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin$ObeliskHandler.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin.class new file mode 100644 index 000000000..5632ab203 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningCreationPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTabPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTabPlugin.class new file mode 100644 index 000000000..8c50549c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTabPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$1.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$1.class new file mode 100644 index 000000000..1f9ff15f6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$2.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$2.class new file mode 100644 index 000000000..453c32448 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$2.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$3.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$3.class new file mode 100644 index 000000000..3d19a8a92 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$3.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$4.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$4.class new file mode 100644 index 000000000..7bb0c3aba Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$4.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$5.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$5.class new file mode 100644 index 000000000..c2b5abb26 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$5.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$6.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$6.class new file mode 100644 index 000000000..02b5362d2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue$6.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue.class new file mode 100644 index 000000000..6592ed4e2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene$FluffyDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene.class new file mode 100644 index 000000000..31343a3a7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom$FluffyCutscene.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom.class b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom.class new file mode 100644 index 000000000..1df8868be Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/SummoningTrainingRoom.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/BurdenInterfacePlugin$1.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/BurdenInterfacePlugin$1.class new file mode 100644 index 000000000..c8e14e5ff Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/BurdenInterfacePlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/BurdenInterfacePlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/BurdenInterfacePlugin.class new file mode 100644 index 000000000..0d69f3ebc Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/BurdenInterfacePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarFeedPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarFeedPlugin.class new file mode 100644 index 000000000..8082346c9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarFeedPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarItemOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarItemOptionPlugin.class new file mode 100644 index 000000000..3c4dfe2b1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarItemOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarNPCOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarNPCOptionPlugin.class new file mode 100644 index 000000000..cdfb91dd4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/FamiliarNPCOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/RemoteViewDialogue.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/RemoteViewDialogue.class new file mode 100644 index 000000000..eaaafa9b9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/RemoteViewDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/skill/summoning/familiar/SummonFamiliarPlugin.class b/CompiledServer/production/Server/plugin/skill/summoning/familiar/SummonFamiliarPlugin.class new file mode 100644 index 000000000..7d036b07b Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/summoning/familiar/SummonFamiliarPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$Chest$1.class b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$Chest$1.class new file mode 100644 index 000000000..ade297f84 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$Chest$1.class differ diff --git a/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$Chest.class b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$Chest.class new file mode 100644 index 000000000..b286ed763 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$Chest.class differ diff --git a/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$PickableDoor.class b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$PickableDoor.class new file mode 100644 index 000000000..1f44d0f52 Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin$PickableDoor.class differ diff --git a/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin.class b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin.class new file mode 100644 index 000000000..b618e87cb Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/thieving/ThievableChestPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/skill/thieving/ThievingOptionPlugin.class b/CompiledServer/production/Server/plugin/skill/thieving/ThievingOptionPlugin.class new file mode 100644 index 000000000..a9e67299a Binary files /dev/null and b/CompiledServer/production/Server/plugin/skill/thieving/ThievingOptionPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/CoordinateCluePlugin.class b/CompiledServer/production/Server/plugin/ttrail/CoordinateCluePlugin.class new file mode 100644 index 000000000..04d172fb9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/CoordinateCluePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/EmoteCluePlugin.class b/CompiledServer/production/Server/plugin/ttrail/EmoteCluePlugin.class new file mode 100644 index 000000000..f42e1be77 Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/EmoteCluePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/MapCluePlugin.class b/CompiledServer/production/Server/plugin/ttrail/MapCluePlugin.class new file mode 100644 index 000000000..d986f9cf4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/MapCluePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/SaradominWizardNPC.class b/CompiledServer/production/Server/plugin/ttrail/SaradominWizardNPC.class new file mode 100644 index 000000000..d6ac552cb Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/SaradominWizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$ClueItemPlugin.class b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$ClueItemPlugin.class new file mode 100644 index 000000000..798308bd5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$ClueItemPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$SextantComponentPlugin.class b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$SextantComponentPlugin.class new file mode 100644 index 000000000..30843c4cd Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$SextantComponentPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$TTrailOptionHandler.class b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$TTrailOptionHandler.class new file mode 100644 index 000000000..f4354d138 Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin$TTrailOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin.class b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin.class new file mode 100644 index 000000000..65ed2f1f3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/TreasureTrailPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/UriNPC$UriDialogue.class b/CompiledServer/production/Server/plugin/ttrail/UriNPC$UriDialogue.class new file mode 100644 index 000000000..db2cf559f Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/UriNPC$UriDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/UriNPC.class b/CompiledServer/production/Server/plugin/ttrail/UriNPC.class new file mode 100644 index 000000000..3e1020f1d Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/UriNPC.class differ diff --git a/CompiledServer/production/Server/plugin/ttrail/ZamorakWizardNPC.class b/CompiledServer/production/Server/plugin/ttrail/ZamorakWizardNPC.class new file mode 100644 index 000000000..06063771a Binary files /dev/null and b/CompiledServer/production/Server/plugin/ttrail/ZamorakWizardNPC.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/BasicStarter.class b/CompiledServer/production/Server/plugin/tutorial/BasicStarter.class new file mode 100644 index 000000000..94080ca0a Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/BasicStarter.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/BrotherBraceDialogue.class b/CompiledServer/production/Server/plugin/tutorial/BrotherBraceDialogue.class new file mode 100644 index 000000000..376c52c5e Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/BrotherBraceDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/CombatInstructorDialogue.class b/CompiledServer/production/Server/plugin/tutorial/CombatInstructorDialogue.class new file mode 100644 index 000000000..2e10d5978 Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/CombatInstructorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/FinancialAdvisorDialogue.class b/CompiledServer/production/Server/plugin/tutorial/FinancialAdvisorDialogue.class new file mode 100644 index 000000000..8730431ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/FinancialAdvisorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/MasterChefDialogue.class b/CompiledServer/production/Server/plugin/tutorial/MasterChefDialogue.class new file mode 100644 index 000000000..8195ee1cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/MasterChefDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/MiningInstructorDialogue.class b/CompiledServer/production/Server/plugin/tutorial/MiningInstructorDialogue.class new file mode 100644 index 000000000..1d975fbfa Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/MiningInstructorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/QuestGuideDialogue.class b/CompiledServer/production/Server/plugin/tutorial/QuestGuideDialogue.class new file mode 100644 index 000000000..b417bcbd5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/QuestGuideDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/RSGuideDialogue.class b/CompiledServer/production/Server/plugin/tutorial/RSGuideDialogue.class new file mode 100644 index 000000000..d0058cd01 Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/RSGuideDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/SurvivalExpertDialogue.class b/CompiledServer/production/Server/plugin/tutorial/SurvivalExpertDialogue.class new file mode 100644 index 000000000..1c5711f35 Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/SurvivalExpertDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/TutorialBook.class b/CompiledServer/production/Server/plugin/tutorial/TutorialBook.class new file mode 100644 index 000000000..e4d74bf09 Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/TutorialBook.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/TutorialCompletionDialogue.class b/CompiledServer/production/Server/plugin/tutorial/TutorialCompletionDialogue.class new file mode 100644 index 000000000..f96b3b675 Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/TutorialCompletionDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/tutorial/TutorialIslandPlugin.class b/CompiledServer/production/Server/plugin/tutorial/TutorialIslandPlugin.class new file mode 100644 index 000000000..4fd0ff07c Binary files /dev/null and b/CompiledServer/production/Server/plugin/tutorial/TutorialIslandPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/ChaosTunnelZone$1.class b/CompiledServer/production/Server/plugin/zone/ChaosTunnelZone$1.class new file mode 100644 index 000000000..9adde0b7c Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/ChaosTunnelZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/ChaosTunnelZone.class b/CompiledServer/production/Server/plugin/zone/ChaosTunnelZone.class new file mode 100644 index 000000000..ef43dd8d7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/ChaosTunnelZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/CrandorZone.class b/CompiledServer/production/Server/plugin/zone/CrandorZone.class new file mode 100644 index 000000000..6811757ea Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/CrandorZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/DesertZone$1.class b/CompiledServer/production/Server/plugin/zone/DesertZone$1.class new file mode 100644 index 000000000..040fbd0aa Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/DesertZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/DesertZone.class b/CompiledServer/production/Server/plugin/zone/DesertZone.class new file mode 100644 index 000000000..24124eb57 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/DesertZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore$1.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore$1.class new file mode 100644 index 000000000..94953406d Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore$2.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore$2.class new file mode 100644 index 000000000..ccd394cf6 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore$2.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore.class new file mode 100644 index 000000000..5184cc490 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$CreditStore.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$GnomeTravellerPlugin$GnomeDialogue.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$GnomeTravellerPlugin$GnomeDialogue.class new file mode 100644 index 000000000..def2bcc04 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$GnomeTravellerPlugin$GnomeDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$GnomeTravellerPlugin.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$GnomeTravellerPlugin.class new file mode 100644 index 000000000..6c51c1d21 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$GnomeTravellerPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class new file mode 100644 index 000000000..cc175fa8b Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$RewardTraderDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$TeleporterDialogue$1.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$TeleporterDialogue$1.class new file mode 100644 index 000000000..ed33916a5 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$TeleporterDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$TeleporterDialogue.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$TeleporterDialogue.class new file mode 100644 index 000000000..f83bb34ba Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone$TeleporterDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/GrandExchangeZone.class b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone.class new file mode 100644 index 000000000..cb72ba5db Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/GrandExchangeZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/HomeZone.class b/CompiledServer/production/Server/plugin/zone/HomeZone.class new file mode 100644 index 000000000..4bce6d711 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/HomeZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/IcePathZone$1.class b/CompiledServer/production/Server/plugin/zone/IcePathZone$1.class new file mode 100644 index 000000000..9c3626277 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/IcePathZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/IcePathZone.class b/CompiledServer/production/Server/plugin/zone/IcePathZone.class new file mode 100644 index 000000000..31d1904f0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/IcePathZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/TzhaarZone.class b/CompiledServer/production/Server/plugin/zone/TzhaarZone.class new file mode 100644 index 000000000..9c2e00ad0 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/TzhaarZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$1.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$1.class new file mode 100644 index 000000000..cedef3f07 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class new file mode 100644 index 000000000..be70c2ea1 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$MandrithDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class new file mode 100644 index 000000000..5df3c3d83 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$PilesDialoguePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$PilesItemHandler.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$PilesItemHandler.class new file mode 100644 index 000000000..cec287047 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$PilesItemHandler.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class new file mode 100644 index 000000000..3e371950c Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$RuniteGolemMinePulse.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class new file mode 100644 index 000000000..8f016ea38 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone$RuniteGolemNPC.class differ diff --git a/CompiledServer/production/Server/plugin/zone/WildernessAreaZone.class b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone.class new file mode 100644 index 000000000..66fcc1742 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/WildernessAreaZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon$1.class b/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon$1.class new file mode 100644 index 000000000..ebc740d85 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon$SalarinTwistedNPC.class b/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon$SalarinTwistedNPC.class new file mode 100644 index 000000000..cf6d248a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon$SalarinTwistedNPC.class differ diff --git a/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon.class b/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon.class new file mode 100644 index 000000000..564532a29 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/YanilleAgilityDungeon.class differ diff --git a/CompiledServer/production/Server/plugin/zone/fremmenik/FremmenikPlugin.class b/CompiledServer/production/Server/plugin/zone/fremmenik/FremmenikPlugin.class new file mode 100644 index 000000000..408e10304 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/fremmenik/FremmenikPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/neitiznot/MawnisBurowgarDialogue.class b/CompiledServer/production/Server/plugin/zone/neitiznot/MawnisBurowgarDialogue.class new file mode 100644 index 000000000..734c5021f Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/neitiznot/MawnisBurowgarDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/neitiznot/NeitiznotZone.class b/CompiledServer/production/Server/plugin/zone/neitiznot/NeitiznotZone.class new file mode 100644 index 000000000..6c9d5dd69 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/neitiznot/NeitiznotZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/neitiznot/ThakkradYakDialogue.class b/CompiledServer/production/Server/plugin/zone/neitiznot/ThakkradYakDialogue.class new file mode 100644 index 000000000..192b4bb26 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/neitiznot/ThakkradYakDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin$1.class b/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin$1.class new file mode 100644 index 000000000..b6429b5a4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class b/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class new file mode 100644 index 000000000..c3769efc3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin$YakArmourPulse.class differ diff --git a/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin.class b/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin.class new file mode 100644 index 000000000..2d97bfa4c Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/neitiznot/YakArmourPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/EctoplasmFillPlugin$1.class b/CompiledServer/production/Server/plugin/zone/phasmatys/EctoplasmFillPlugin$1.class new file mode 100644 index 000000000..7ef32e6f4 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/EctoplasmFillPlugin$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/EctoplasmFillPlugin.class b/CompiledServer/production/Server/plugin/zone/phasmatys/EctoplasmFillPlugin.class new file mode 100644 index 000000000..262c8cbd8 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/EctoplasmFillPlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/GhostDiscipleDialogue.class b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostDiscipleDialogue.class new file mode 100644 index 000000000..bcec175ec Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostDiscipleDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/GhostInkeeperDialogue.class b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostInkeeperDialogue.class new file mode 100644 index 000000000..3cda7278c Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostInkeeperDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/GhostSailorDialogue.class b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostSailorDialogue.class new file mode 100644 index 000000000..e839be3ad Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostSailorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/GhostVillagerDialogue.class b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostVillagerDialogue.class new file mode 100644 index 000000000..de64cc8cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/GhostVillagerDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/GravingasNPC$GravingasDialogue.class b/CompiledServer/production/Server/plugin/zone/phasmatys/GravingasNPC$GravingasDialogue.class new file mode 100644 index 000000000..375ccdf69 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/GravingasNPC$GravingasDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/GravingasNPC.class b/CompiledServer/production/Server/plugin/zone/phasmatys/GravingasNPC.class new file mode 100644 index 000000000..99a182ca2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/GravingasNPC.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/NecrovarusDialogue.class b/CompiledServer/production/Server/plugin/zone/phasmatys/NecrovarusDialogue.class new file mode 100644 index 000000000..320259b73 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/NecrovarusDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/PhasmatysZone$BoneLoaderHandler.class b/CompiledServer/production/Server/plugin/zone/phasmatys/PhasmatysZone$BoneLoaderHandler.class new file mode 100644 index 000000000..9c210ccc3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/PhasmatysZone$BoneLoaderHandler.class differ diff --git a/CompiledServer/production/Server/plugin/zone/phasmatys/PhasmatysZone.class b/CompiledServer/production/Server/plugin/zone/phasmatys/PhasmatysZone.class new file mode 100644 index 000000000..93b0c1ea7 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/phasmatys/PhasmatysZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/JarvaldDialogue$1.class b/CompiledServer/production/Server/plugin/zone/rellekka/JarvaldDialogue$1.class new file mode 100644 index 000000000..4fdd2698a Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/JarvaldDialogue$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/JarvaldDialogue.class b/CompiledServer/production/Server/plugin/zone/rellekka/JarvaldDialogue.class new file mode 100644 index 000000000..75b26266c Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/JarvaldDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/LightHousePlugin.class b/CompiledServer/production/Server/plugin/zone/rellekka/LightHousePlugin.class new file mode 100644 index 000000000..d97960202 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/LightHousePlugin.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/MariaGunnarsDialogue.class b/CompiledServer/production/Server/plugin/zone/rellekka/MariaGunnarsDialogue.class new file mode 100644 index 000000000..51634bebc Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/MariaGunnarsDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$1.class b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$1.class new file mode 100644 index 000000000..417a1bbcd Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$2.class b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$2.class new file mode 100644 index 000000000..802cc8597 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$2.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$RellekaOptionHandler.class b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$RellekaOptionHandler.class new file mode 100644 index 000000000..47ad782cf Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone$RellekaOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone.class b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone.class new file mode 100644 index 000000000..3da8b692a Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/RellekkaZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/rellekka/SailorDialogue.class b/CompiledServer/production/Server/plugin/zone/rellekka/SailorDialogue.class new file mode 100644 index 000000000..f473d721e Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/rellekka/SailorDialogue.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/DagannothKingNPC$DagType.class b/CompiledServer/production/Server/plugin/zone/wbisland/DagannothKingNPC$DagType.class new file mode 100644 index 000000000..eb494dcb9 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/DagannothKingNPC$DagType.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/DagannothKingNPC.class b/CompiledServer/production/Server/plugin/zone/wbisland/DagannothKingNPC.class new file mode 100644 index 000000000..9e6133036 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/DagannothKingNPC.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/SpinolypNPC$SpinolpySwingHandler.class b/CompiledServer/production/Server/plugin/zone/wbisland/SpinolypNPC$SpinolpySwingHandler.class new file mode 100644 index 000000000..e12cc2450 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/SpinolypNPC$SpinolpySwingHandler.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/SpinolypNPC.class b/CompiledServer/production/Server/plugin/zone/wbisland/SpinolypNPC.class new file mode 100644 index 000000000..be7c5ef3e Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/SpinolypNPC.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$1$1.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$1$1.class new file mode 100644 index 000000000..d3d971e7e Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$1$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$1.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$1.class new file mode 100644 index 000000000..4d9d3019b Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$1.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$2.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$2.class new file mode 100644 index 000000000..7641c64fa Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$2.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$DoorSupportNPC.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$DoorSupportNPC.class new file mode 100644 index 000000000..80849a1c2 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$DoorSupportNPC.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$DungeonOptionHandler.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$DungeonOptionHandler.class new file mode 100644 index 000000000..1b0d2101d Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone$DungeonOptionHandler.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone.class new file mode 100644 index 000000000..0cdf31b0d Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthDungeonZone.class differ diff --git a/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthIslandZone.class b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthIslandZone.class new file mode 100644 index 000000000..c2fdedde3 Binary files /dev/null and b/CompiledServer/production/Server/plugin/zone/wbisland/WaterBirthIslandZone.class differ diff --git a/Server/rebel.xml b/CompiledServer/production/Server/rebel.xml similarity index 83% rename from Server/rebel.xml rename to CompiledServer/production/Server/rebel.xml index 2961dc19c..e1ca8c0a4 100644 --- a/Server/rebel.xml +++ b/CompiledServer/production/Server/rebel.xml @@ -2,7 +2,7 @@ - + diff --git a/Management-Server/.gitignore b/Management-Server/.gitignore index 17a06722d..4047fba69 100644 --- a/Management-Server/.gitignore +++ b/Management-Server/.gitignore @@ -14,5 +14,5 @@ data/cache/ *.iml *.eml *.userlibraries -*.class data/players/** +org/ diff --git a/Management-Server/org/keldagrim/Main$2.class b/Management-Server/org/keldagrim/Main$2.class deleted file mode 100644 index be1f778cc..000000000 Binary files a/Management-Server/org/keldagrim/Main$2.class and /dev/null differ diff --git a/Management-Server/org/keldagrim/Main$4.class b/Management-Server/org/keldagrim/Main$4.class deleted file mode 100644 index 14d1f933e..000000000 Binary files a/Management-Server/org/keldagrim/Main$4.class and /dev/null differ diff --git a/Management-Server/org/keldagrim/Main$5.class b/Management-Server/org/keldagrim/Main$5.class deleted file mode 100644 index 330158734..000000000 Binary files a/Management-Server/org/keldagrim/Main$5.class and /dev/null differ diff --git a/Management-Server/org/keldagrim/Main$6.class b/Management-Server/org/keldagrim/Main$6.class deleted file mode 100644 index 7b266d90d..000000000 Binary files a/Management-Server/org/keldagrim/Main$6.class and /dev/null differ diff --git a/Management-Server/org/keldagrim/Main$7.class b/Management-Server/org/keldagrim/Main$7.class deleted file mode 100644 index 55491494b..000000000 Binary files a/Management-Server/org/keldagrim/Main$7.class and /dev/null differ diff --git a/Management-Server/org/keldagrim/Main$8.class b/Management-Server/org/keldagrim/Main$8.class deleted file mode 100644 index 777d9df9c..000000000 Binary files a/Management-Server/org/keldagrim/Main$8.class and /dev/null differ diff --git a/Management-Server/src/org/keldagrim/ServerConstants.java b/Management-Server/src/org/keldagrim/ServerConstants.java index edc0f306b..54a1de28d 100644 --- a/Management-Server/src/org/keldagrim/ServerConstants.java +++ b/Management-Server/src/org/keldagrim/ServerConstants.java @@ -10,6 +10,11 @@ import org.keldagrim.system.OperatingSystem; */ public final class ServerConstants { + /** + * The port to be used for communications. + */ + public static final String SERVER_NAME = "RS 2009"; + /** * The port to be used for communications. */ @@ -49,12 +54,14 @@ public final class ServerConstants { * The administrators. */ public static final String[] ADMINISTRATORS = { - "ethan", - "austin", + "ethan", + "austin", + "redsparr0w", }; public static final String[] DATABASE_NAMES = { - "keldagr1_server", "keldagr1_global" + "server", + "global", }; /** diff --git a/Management-Server/src/org/keldagrim/launcher/Constants.java b/Management-Server/src/org/keldagrim/launcher/Constants.java index d19c74955..4d6e78cd5 100644 --- a/Management-Server/src/org/keldagrim/launcher/Constants.java +++ b/Management-Server/src/org/keldagrim/launcher/Constants.java @@ -24,11 +24,6 @@ public class Constants { */ public static final String CACHE_NAME = File.separator + ".keldagrim_530"; - /** - * Management Server - */ - public static final String MANAGEMENT_SERVER = "management.keldagrim.com"; - /** * Gets the screen coordinates to place panels in the center * @param {Dimension} the panel size, null to use default frame size diff --git a/Management-Server/src/org/keldagrim/net/packet/WorldPacketRepository.java b/Management-Server/src/org/keldagrim/net/packet/WorldPacketRepository.java index f038701a7..96f2af7fa 100644 --- a/Management-Server/src/org/keldagrim/net/packet/WorldPacketRepository.java +++ b/Management-Server/src/org/keldagrim/net/packet/WorldPacketRepository.java @@ -3,6 +3,7 @@ package org.keldagrim.net.packet; import java.nio.ByteBuffer; import java.util.List; +import org.crandor.game.world.GameWorld; import org.keldagrim.ServerConstants; import org.keldagrim.net.IoSession; import org.keldagrim.system.PunishmentStorage; @@ -14,6 +15,7 @@ import org.keldagrim.world.PlayerSession; import org.keldagrim.world.WorldDatabase; import org.keldagrim.world.info.Response; import org.keldagrim.world.info.UIDInfo; +import org.keldagrim.world.info.WorldInfo; /** * Repository class for world packets. @@ -54,6 +56,14 @@ public final class WorldPacketRepository { player.getWorld().getSession().write(buffer); } + public static void sendPlayerMessage(PlayerSession player, String[] messages) { + if (player == null) { + return; + } + for (String message : messages) + sendPlayerMessage(player, message); + } + /** * Sends the contact information. * @param player The player. @@ -430,7 +440,7 @@ public final class WorldPacketRepository { } ClanRepository clan = ClanRepository.get(server, clanName); if (clan == null) { - sendPlayerMessage(player, "The channel you tried to join does not exist. Try joining the main clan named 'Keldagrim'.:clan:"); + sendPlayerMessage(player, new String[]{ "The channel you tried to join does not exist.", "Try joining the main clan named '" + ServerConstants.SERVER_NAME + "'.:clan:" }); return; } clan.enter(player); diff --git a/Management-Server/src/org/keldagrim/system/communication/CommunicationInfo.java b/Management-Server/src/org/keldagrim/system/communication/CommunicationInfo.java index f890b5e06..652edb64d 100644 --- a/Management-Server/src/org/keldagrim/system/communication/CommunicationInfo.java +++ b/Management-Server/src/org/keldagrim/system/communication/CommunicationInfo.java @@ -152,7 +152,7 @@ public final class CommunicationInfo { statement.setString(3, contacts); statement.setString(4, blocked); statement.setString(5, clanName); - statement.setString(6, currentClan == null ? "grim" : currentClan); + statement.setString(6, currentClan); statement.setString(7, joinRequirement.ordinal() + "," + messageRequirement.ordinal() + "," + kickRequirement.ordinal() + "," + lootRequirement.ordinal()); statement.setString(8, publicChatSetting + "," + privateChatSetting + "," + tradeSetting); } diff --git a/README.md b/README.md index 09a3ea980..dc466061d 100644 --- a/README.md +++ b/README.md @@ -26,20 +26,19 @@ At any point, if you need help, you are free to join our Discord server at: http ## Step 3: Setting up the Database Since this portion of the guide is operating-system specific, you will either need basic database knowledge or a bit of help. Below are the things that need to be configured. -### General: -- Configure root@localhost to have a blank password -- Create a table in root named `server` and another named `global` -- Import `09HDscape-server/server.sql` and `09HDscape-server/global.sql` into their respective tables -- Start the database -### Windows: +### Windows & Linux GUI: - Download and install [xampp](https://www.apachefriends.org/download.html) - Start the `Apache` and `MySQL` modules - Navigate to http://localhost/phpmyadmin/ - Create 2 new tables named `server` and `global` -- Import `09HDscape-server/server.sql` and `09HDscape-server/global.sql` into their respective tables +- Import `Server/server.sql` and `Server/global.sql` into their respective databases - _Refer [here](https://www.thecodedeveloper.com/import-large-sql-files-xampp/) for help importing the `.sql` files_ +# Linux Command Line +- Instructions for various Linux distros can be found [here](https://github.com/dginovker/RS-2009/tree/master/CompiledServer/Guides) + + ## Step 4: Running the Server & Client - Run the management-server - In IntelliJ, navigate to `09HDscape-management-server/src/org/keldagrim/Main.java`, right click > Run diff --git a/Server/.gitignore b/Server/.gitignore index 0e567a58a..031002751 100644 --- a/Server/.gitignore +++ b/Server/.gitignore @@ -7,11 +7,9 @@ data/profile/** .DS_Store** .project** .classpath** -.class** /bin/ /out/ *.iml *.eml *.userlibraries -*.class data/players/** diff --git a/Server/Crandor Server - 530 - World 1.bat b/Server/Crandor Server - 530 - World 1.bat index feba58153..e10d1ccec 100644 --- a/Server/Crandor Server - 530 - World 1.bat +++ b/Server/Crandor Server - 530 - World 1.bat @@ -1,4 +1,4 @@ @echo off @title World 1 -java -server -Xms512m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.Management server1.properties +java -server -Xms512m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.crandor.Server server1.properties pause \ No newline at end of file diff --git a/Server/Crandor Server - 530 - World 2.bat b/Server/Crandor Server - 530 - World 2.bat index eb9db8e71..37e59a4a6 100644 --- a/Server/Crandor Server - 530 - World 2.bat +++ b/Server/Crandor Server - 530 - World 2.bat @@ -1,4 +1,4 @@ @echo off @title World 2 -java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.Management server2.properties -pause \ No newline at end of file +java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.crandor.Server server2.properties +pause diff --git a/Server/Crandor Server - 530 - World 3.bat b/Server/Crandor Server - 530 - World 3.bat index d0b154030..e1d8c6b16 100644 --- a/Server/Crandor Server - 530 - World 3.bat +++ b/Server/Crandor Server - 530 - World 3.bat @@ -1,4 +1,4 @@ @echo off @title World 3 -java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.Management server3.properties -pause \ No newline at end of file +java -server -Xms1024m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.crandor.Server server3.properties +pause diff --git a/Server/Test.bat b/Server/Test.bat deleted file mode 100644 index 7014dd595..000000000 --- a/Server/Test.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -@title World 1 -java -server -Xms512m -Xmx1536m -XX:NewSize=32m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent -XX:+AggressiveOpts -cp bin;data/libs/*;data/libs/slf4j/*; org.keldagrim.tools.Test -pause \ No newline at end of file diff --git a/Server/data/cache begin.zip b/Server/data/cache begin.zip index 7f9139227..7e0e4e7d2 100644 Binary files a/Server/data/cache begin.zip and b/Server/data/cache begin.zip differ diff --git a/Server/data/cache.zip b/Server/data/cache.zip index d18a7ef67..9633ea1dd 100644 Binary files a/Server/data/cache.zip and b/Server/data/cache.zip differ diff --git a/Server/data/cacheback up.rar b/Server/data/cacheback up.rar index 64d970387..098476238 100644 Binary files a/Server/data/cacheback up.rar and b/Server/data/cacheback up.rar differ diff --git a/Server/data/eco/grand_exchange_db.emp b/Server/data/eco/grand_exchange_db.emp index 5661ec662..5a21fe783 100644 Binary files a/Server/data/eco/grand_exchange_db.emp and b/Server/data/eco/grand_exchange_db.emp differ diff --git a/Server/data/kratoscache.zip b/Server/data/kratoscache.zip index fcf7b882f..f89be5e74 100644 Binary files a/Server/data/kratoscache.zip and b/Server/data/kratoscache.zip differ diff --git a/Server/global.sql b/Server/global.sql index b33a1b335..59aa8b4c2 100644 --- a/Server/global.sql +++ b/Server/global.sql @@ -1,13 +1,15 @@ -- phpMyAdmin SQL Dump --- version 4.5.1 --- http://www.phpmyadmin.net +-- version 4.9.0.1 +-- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 --- Generation Time: Mar 26, 2016 at 01:08 AM --- Server version: 10.1.10-MariaDB --- PHP Version: 5.5.33 +-- Generation Time: Nov 06, 2019 at 01:33 AM +-- Server version: 10.4.6-MariaDB +-- PHP Version: 7.3.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET AUTOCOMMIT = 0; +START TRANSACTION; SET time_zone = "+00:00"; @@ -33,43 +35,6 @@ CREATE TABLE `dev_log` ( `date` timestamp NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `dev_log` --- - -INSERT INTO `dev_log` (`id`, `username`, `content`, `date`) VALUES -(1, 'vexia', 'Added Arios voting bonds as a reward', '2015-12-04 04:03:28'), -(3, 'vexia', 'Added profile viewing (forums)', '2015-12-06 00:07:11'), -(4, 'vexia', 'Added herb boxes', '2015-12-06 00:07:23'), -(5, 'vexia', 'Added an NPC to buy low-level skilling items for high price!', '2015-12-06 18:05:16'), -(6, 'vexia', 'Adjusted home shops & prices', '2015-12-06 21:35:31'), -(7, 'vexia', 'Fixed inventory disappearing when using deposit box.', '2015-12-13 18:51:16'), -(8, 'vexia', 'Fixed player safety test completion interface.', '2015-12-13 18:51:43'), -(9, 'vexia', 'Fixed falador agility shortcut.', '2015-12-13 18:58:04'), -(10, 'vexia', 'Fixed Goldsmith gauntlets experience reward.', '2015-12-13 18:59:41'), -(11, 'vexia', 'Zamorakian hasta is now a godwars protection item.', '2015-12-13 19:04:15'), -(12, 'vexia', 'Fixed slayer helmet effect.', '2015-12-13 19:11:37'), -(13, 'vexia', 'Duel arena veng bug has been fixed.', '2015-12-13 19:20:05'), -(14, 'vexia', 'Changed steel bolts from 8gp to 150 gp', '2015-12-15 03:52:43'), -(15, 'vexia', 'Removed astral runes from magic shop', '2015-12-15 03:54:13'), -(16, 'vexia', 'Recent activity for profiles now includes when users create threads', '2015-12-15 04:05:03'), -(17, 'vexia', 'Added beginner level tasks for Lumbridge/Draynor diary.', '2015-12-15 06:23:00'), -(18, 'vexia', 'Added medium level tasks for lumbridge/draynor achievement diary.', '2015-12-16 07:46:23'), -(19, 'vexia', 'Finished the Lumbridge Achievement Diary.', '2015-12-17 05:57:38'), -(20, 'vexia', 'Added the explorer rings mechanics.', '2015-12-17 07:15:54'), -(21, 'empathy', 'Added broad arrow making - must unlock via slayer rewards', '2015-12-17 07:19:54'), -(22, 'empathy', 'Added broad bolt making - must unlock via slayer rewards ', '2015-12-17 07:20:54'), -(23, 'empathy', 'Added middle mouse rotation for the client', '2015-12-17 07:22:54'), -(24, 'empathy', 'Added Dagannoth Kings under dagganoth tasks', '2015-12-17 07:29:54'), -(25, 'vexia', 'Added the gilded altar.', '2015-12-18 18:32:52'), -(26, 'vexia', 'Fixed shooting star mining requirements.', '2015-12-18 18:45:10'), -(27, 'vexia', 'Fixed an iron titan bug.', '2015-12-18 18:45:16'), -(28, 'vexia', 'Changed Arios teleporter to 5 seconds.', '2015-12-18 19:06:53'), -(30, 'vexia', 'Added broad-tipped bolts.', '2016-01-01 21:11:36'), -(31, 'vexia', 'Fixed KQ', '2016-01-01 21:11:43'), -(32, 'vexia', 'Fixed KBD slayer task!', '2016-01-01 21:11:49'), -(33, 'vexia', 'Fixed venenatis & callisto safe spots', '2016-01-01 22:16:26'); - -- -------------------------------------------------------- -- @@ -79,43 +44,35 @@ INSERT INTO `dev_log` (`id`, `username`, `content`, `date`) VALUES CREATE TABLE `highscores` ( `id` int(11) UNSIGNED NOT NULL, `username` varchar(20) DEFAULT NULL, - `overall_xp` int(11) NOT NULL DEFAULT '0', - `total_level` int(11) NOT NULL DEFAULT '0', + `overall_xp` int(11) NOT NULL DEFAULT 0, + `total_level` int(11) NOT NULL DEFAULT 0, `ironManMode` varchar(15) NOT NULL DEFAULT 'NONE', - `xp_0` int(11) NOT NULL DEFAULT '0', - `xp_1` int(11) NOT NULL DEFAULT '0', - `xp_2` int(11) NOT NULL DEFAULT '0', - `xp_3` int(11) NOT NULL DEFAULT '0', - `xp_4` int(11) NOT NULL DEFAULT '0', - `xp_5` int(11) NOT NULL DEFAULT '0', - `xp_6` int(11) NOT NULL DEFAULT '0', - `xp_7` int(11) NOT NULL DEFAULT '0', - `xp_8` int(11) NOT NULL DEFAULT '0', - `xp_9` int(11) NOT NULL DEFAULT '0', - `xp_10` int(11) NOT NULL DEFAULT '0', - `xp_11` int(11) NOT NULL DEFAULT '0', - `xp_12` int(11) NOT NULL DEFAULT '0', - `xp_13` int(11) NOT NULL DEFAULT '0', - `xp_14` int(11) NOT NULL DEFAULT '0', - `xp_15` int(11) NOT NULL DEFAULT '0', - `xp_16` int(11) NOT NULL DEFAULT '0', - `xp_17` int(11) NOT NULL DEFAULT '0', - `xp_18` int(11) NOT NULL DEFAULT '0', - `xp_19` int(11) NOT NULL DEFAULT '0', - `xp_20` int(11) NOT NULL DEFAULT '0', - `xp_21` int(11) NOT NULL DEFAULT '0', - `xp_22` int(11) NOT NULL DEFAULT '0', - `xp_23` int(11) NOT NULL DEFAULT '0' + `xp_0` int(11) NOT NULL DEFAULT 0, + `xp_1` int(11) NOT NULL DEFAULT 0, + `xp_2` int(11) NOT NULL DEFAULT 0, + `xp_3` int(11) NOT NULL DEFAULT 0, + `xp_4` int(11) NOT NULL DEFAULT 0, + `xp_5` int(11) NOT NULL DEFAULT 0, + `xp_6` int(11) NOT NULL DEFAULT 0, + `xp_7` int(11) NOT NULL DEFAULT 0, + `xp_8` int(11) NOT NULL DEFAULT 0, + `xp_9` int(11) NOT NULL DEFAULT 0, + `xp_10` int(11) NOT NULL DEFAULT 0, + `xp_11` int(11) NOT NULL DEFAULT 0, + `xp_12` int(11) NOT NULL DEFAULT 0, + `xp_13` int(11) NOT NULL DEFAULT 0, + `xp_14` int(11) NOT NULL DEFAULT 0, + `xp_15` int(11) NOT NULL DEFAULT 0, + `xp_16` int(11) NOT NULL DEFAULT 0, + `xp_17` int(11) NOT NULL DEFAULT 0, + `xp_18` int(11) NOT NULL DEFAULT 0, + `xp_19` int(11) NOT NULL DEFAULT 0, + `xp_20` int(11) NOT NULL DEFAULT 0, + `xp_21` int(11) NOT NULL DEFAULT 0, + `xp_22` int(11) NOT NULL DEFAULT 0, + `xp_23` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `highscores` --- - -INSERT INTO `highscores` (`id`, `username`, `overall_xp`, `total_level`, `ironManMode`, `xp_0`, `xp_1`, `xp_2`, `xp_3`, `xp_4`, `xp_5`, `xp_6`, `xp_7`, `xp_8`, `xp_9`, `xp_10`, `xp_11`, `xp_12`, `xp_13`, `xp_14`, `xp_15`, `xp_16`, `xp_17`, `xp_18`, `xp_19`, `xp_20`, `xp_21`, `xp_22`, `xp_23`) VALUES -(1, 'uim_alex', 36043583, 763, 'ULTIMATE', 8771558, 7195629, 10692629, 8771558, 65600, 237150, 16700, 19500, 68125, 0, 0, 91000, 8780, 0, 79722, 0, 0, 0, 132, 0, 25500, 0, 0, 0), -(2, 'alex', 312962865, 2376, 'NONE', 13093231, 13038431, 13034431, 13065525, 13058831, 13048458, 13038631, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431, 13034431); - -- -------------------------------------------------------- -- @@ -128,46 +85,46 @@ CREATE TABLE `members` ( `username` varchar(15) DEFAULT NULL, `password` varchar(100) DEFAULT NULL, `salt` varchar(35) DEFAULT NULL, - `rights` int(1) NOT NULL DEFAULT '0', - `email_activated` int(1) NOT NULL DEFAULT '0', - `lastActive` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `donatorType` int(2) NOT NULL DEFAULT '-1', - `donationTotal` double(10,2) NOT NULL DEFAULT '0.00', - `credits` int(5) NOT NULL DEFAULT '0', - `icon` int(2) NOT NULL DEFAULT '0', + `rights` int(1) NOT NULL DEFAULT 0, + `email_activated` int(1) NOT NULL DEFAULT 0, + `lastActive` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `donatorType` int(2) NOT NULL DEFAULT -1, + `donationTotal` double(10,2) NOT NULL DEFAULT 0.00, + `credits` int(5) NOT NULL DEFAULT 0, + `icon` int(2) NOT NULL DEFAULT 0, `perks` varchar(500) NOT NULL DEFAULT '', - `ip` longtext, - `mac` longtext, - `serial` longtext, + `ip` longtext DEFAULT NULL, + `mac` longtext DEFAULT NULL, + `serial` longtext DEFAULT NULL, `computerName` varchar(2000) NOT NULL DEFAULT '', - `monthlyVotes` int(11) NOT NULL DEFAULT '0', - `netWorth` bigint(200) NOT NULL DEFAULT '0', - `forumUID` int(11) NOT NULL DEFAULT '-1', + `monthlyVotes` int(11) NOT NULL DEFAULT 0, + `netWorth` bigint(200) NOT NULL DEFAULT 0, + `forumUID` int(11) NOT NULL DEFAULT -1, `ironManMode` varchar(15) NOT NULL DEFAULT 'NONE', - `bank` longtext, - `inventory` longtext, - `equipment` longtext, - `ge` longtext, - `muteTime` bigint(20) NOT NULL DEFAULT '-1', - `banTime` bigint(20) NOT NULL DEFAULT '-1', - `profileImage` varchar(300) NOT NULL DEFAULT 'http://ariosrsps.com/lib/images/forums/defaultprofile.png', - `contacts` longtext, - `blocked` longtext, - `clanName` varchar(12) NOT NULL DEFAULT '', - `currentClan` varchar(12) NOT NULL DEFAULT 'arios', + `bank` longtext DEFAULT NULL, + `inventory` longtext DEFAULT NULL, + `equipment` longtext DEFAULT NULL, + `ge` longtext DEFAULT NULL, + `muteTime` bigint(20) NOT NULL DEFAULT -1, + `banTime` bigint(20) NOT NULL DEFAULT -1, + `profileImage` varchar(300) DEFAULT NULL, + `contacts` longtext DEFAULT NULL, + `blocked` longtext DEFAULT NULL, + `clanName` varchar(15) NOT NULL DEFAULT '', + `currentClan` varchar(15) DEFAULT NULL, `clanReqs` varchar(10) NOT NULL DEFAULT '1,0,8,9', - `disconnectTime` bigint(20) NOT NULL DEFAULT '0', - `lastWorld` int(3) NOT NULL DEFAULT '-1', + `disconnectTime` bigint(20) NOT NULL DEFAULT 0, + `lastWorld` int(3) NOT NULL DEFAULT -1, `chatSettings` varchar(10) NOT NULL DEFAULT '0,0,0', - `timePlayed` bigint(20) DEFAULT '0', - `lastLogin` bigint(20) NOT NULL DEFAULT '0', + `timePlayed` bigint(20) DEFAULT 0, + `lastLogin` bigint(20) NOT NULL DEFAULT 0, `lastGameIp` varchar(15) DEFAULT '', - `countryCode` int(11) NOT NULL DEFAULT '0', + `countryCode` int(11) NOT NULL DEFAULT 0, `birthday` date DEFAULT NULL, - `online` tinyint(1) NOT NULL DEFAULT '0', - `signature` longtext, + `online` tinyint(1) NOT NULL DEFAULT 0, + `signature` longtext DEFAULT NULL, `joined_date` timestamp NULL DEFAULT NULL, - `posts` int(11) NOT NULL DEFAULT '0' + `posts` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- @@ -175,8 +132,7 @@ CREATE TABLE `members` ( -- INSERT INTO `members` (`UID`, `email`, `username`, `password`, `salt`, `rights`, `email_activated`, `lastActive`, `donatorType`, `donationTotal`, `credits`, `icon`, `perks`, `ip`, `mac`, `serial`, `computerName`, `monthlyVotes`, `netWorth`, `forumUID`, `ironManMode`, `bank`, `inventory`, `equipment`, `ge`, `muteTime`, `banTime`, `profileImage`, `contacts`, `blocked`, `clanName`, `currentClan`, `clanReqs`, `disconnectTime`, `lastWorld`, `chatSettings`, `timePlayed`, `lastLogin`, `lastGameIp`, `countryCode`, `birthday`, `online`, `signature`, `joined_date`, `posts`) VALUES -(1, '', 'alex', '$2a$12$oQz3KDY/4la77lPpYzr2Aupb8NDp5Q8wixAC073w5M18ntt8P8RC2', '$2a$12$oQz3KDY/4la77lPpYzr2Au', 2, 0, '2016-03-26 00:06:56', -1, 0.00, 0, 0, '', '96.254.196.5', 'D4-3D-7E-97-2C-45', 'To be filled by O.E.M.', 'Alex', 0, -1940633227, -1, 'NONE', '14850,1|14851,1|14853,1|7462,10|14636,1|14638,1|14639,1|560,8000|14640,1|14896,1|561,10000|14641,1|14897,1|562,8000|14642,1|14898,1|14643,1|14899,1|14644,1|14900,1|14645,1|14646,1|4151,102|14647,1|14648,1|14649,1|14650,1|14651,1|14652,1|14653,1|14654,1|14655,1|14656,1|14657,2|14658,1|14660,1|14661,1|14662,1|8007,3|14664,1|14666,1|8010,3|14669,1|14671,1|14673,3|14674,5|14675,1|14936,1|14683,1|861,1|13661,1|14958,1|14962,1|14963,1|14964,1|14965,1|373,50|14966,1|14969,1|14970,1|379,20|14971,1|892,992|14972,102|14977,1|14980,1|14726,1|14983,1|14984,1|14985,1|14988,1|14989,1|14990,1|14991,1|7056,25|14992,1|14993,1|14994,101|14484,4|14742,1|14748,1|15004,1|14749,1|15005,1|15006,1|15007,102|14752,1|15008,2|15010,1000|13734,1|15015,50|15016,3|13736,1|14761,1|6570,10|15018,3|14762,1|13738,1|14763,1|15020,2|14764,1|13740,1|14765,1|14766,1|13742,1|14767,4|14768,100|13744,1|14773,2|14774,2|6585,11|14788,3|14792,1|14793,1|14808,1|14809,1|14810,1|14818,1|995,2147483647|14820,1|14821,1|14822,1|14823,1|14827,1|14828,1|14829,1|14830,1|1775,34|2289,25|14839,1|14845,1|14847,1', '', '14484,1', '', -1, -1, 'http://ariosrsps.com/lib/images/forums/defaultprofile.png', '{uim_alex,1}', '', '', 'arios', '1,0,8,9', 1458950814328, 1, '0,0,0', 11590572, 1458950816126, '96.254.196.5', 225, '3895-01-01', 0, NULL, '2016-03-23 00:03:49', 0), -(2, '', 'uim_alex', '$2a$12$m.rN4wsgmiNi6GHnmMNv5uutUpSS9r9f3GFs.E4pxwsn4MFPDsH9W', '$2a$12$m.rN4wsgmiNi6GHnmMNv5u', 0, 0, '2016-03-25 21:18:31', -1, 0.00, 0, 0, '', '96.254.196.5', 'D4-3D-7E-97-2C-45', 'To be filled by O.E.M.', 'Alex', 0, 141601, -1, 'ULTIMATE', '7056,25|2289,25|115,15|133,15|373,50|121,15', '3105,1|3841,1|7458,1|995,16097|1381,1|8010,3|14764,1|556,169|14765,1|558,237|14766,1|590,1|303,1|8880,1|8882,341|1725,1|1438,1', '', '', -1, -1, 'http://ariosrsps.com/lib/images/forums/defaultprofile.png', '{alex,1}', '', '', 'arios', '1,0,8,9', 1458940709765, 1, '0,0,0', 12479841, 1458940711546, '96.254.196.5', 225, '3890-01-01', 0, NULL, '2016-03-23 00:42:58', 0); +(0, '', 'rs_2009', '$2a$12$P0OU2A5S.lEYdkTq5kq3/u1UlfVkMYIS7WWbxsjjeyfxqTDbygpEe', '$2a$12$P0OU2A5S.lEYdkTq5kq3/u', 2, 0, '2019-11-06 00:29:03', 0, 0.00, 0, 0, '', '127.0.0.1', NULL, NULL, 'SERVER', 0, 0, -1, 'STANDARD', NULL, NULL, NULL, NULL, -1, -1, '', '', '', 'Rs 2009', 'rs_2009', '0,0,8,9', 1572999889084, 1, '0,0,0', NULL, 1572999890885, '127.0.0.1', 0, NULL, 0, NULL, NULL, 0); -- -------------------------------------------------------- @@ -190,7 +146,7 @@ CREATE TABLE `messages` ( `recipient` varchar(15) NOT NULL DEFAULT '', `subject` varchar(40) NOT NULL DEFAULT '', `content` longtext NOT NULL, - `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `date` timestamp NOT NULL DEFAULT current_timestamp(), `is_read` tinyint(1) NOT NULL, `s_delete` tinyint(11) NOT NULL, `r_delete` tinyint(1) NOT NULL @@ -206,7 +162,7 @@ CREATE TABLE `perks` ( `product_id` int(10) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL DEFAULT 'No Name', `description` varchar(500) DEFAULT NULL, - `price` int(10) NOT NULL DEFAULT '0' + `price` int(10) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- @@ -226,7 +182,7 @@ INSERT INTO `perks` (`product_id`, `name`, `description`, `price`) VALUES (17, 'Familiar Whisperer', 'Get to know your familiar better by increasing their lifespan by 50%.', 70), (18, 'Barrows Befriender', 'Befriend the barrows brothers & never experience the wretched degrading of their armour again', 300), (19, 'Abyss Befriender', 'Use the power of the abyss to make your Runecrafting pouches undegradable.', 150), -(21, 'Charge Befriender', 'The God''s of the Hero''s guild have blessed you with the power to use your jewerly free of charge.', 250), +(21, 'Charge Befriender', 'The God\'s of the Hero\'s guild have blessed you with the power to use your jewerly free of charge.', 250), (22, 'Golden Needle', 'Gain an extra 10% experience whilst spinning something on a spinning wheel, including flax. Creating an item made out of dragonhide rewards an extra 5% experience. Your crafting needle also never breaks and thread is consumed less often.\n', 50), (24, 'Slayer Betrayer', 'Obtain the ability through the Slayer Masters to change your slayer task at will. Type ::cleartask to use.', 100), (26, 'Thirst Quencher', 'The gods have blessed you with the knowledge of the deserts to gain the skills required to tap into an unlimited water supply.', 30), @@ -237,14 +193,14 @@ INSERT INTO `perks` (`product_id`, `name`, `description`, `price`) VALUES (32, 'Dwarf Befriender', 'Befriended by the dwarfs you now have the ability to use double the cannon balls and experience no decay on your cannon.', 150), (33, 'Powerpoint', 'This perk grants you double the points in all minigames.', 300), (35, 'Charm Collector', 'Through the power of summoning you will automatically pick up any charms dropped in battle.', 100), -(36, 'Detective', 'You now have a solid 10% chance of a clue scroll drop from any monster that drops clues as well as a 50% better chance of super rare rewards such as 3rd age. You''ll also experience a 50% increased chance to obtain more loot.', 250), +(36, 'Detective', 'You now have a solid 10% chance of a clue scroll drop from any monster that drops clues as well as a 50% better chance of super rare rewards such as 3rd age. You\'ll also experience a 50% increased chance to obtain more loot.', 250), (40, 'Overcharge', 'The power from the overcharge lords is given to you. Your Dragonfire Shield will recharge fully every 10 minutes. The time between casts is also reduced by 50%.', 170), (41, 'Unbreakable Crystal', 'This perk allows for your crystal bow to never degrade.', 350), (42, 'Crusader', 'With this perk you will have a 25% chance to double loot the barrows chest.', 100), (43, 'Pet Befriender', 'This perk gives you the ability to double your chances on getting boss/skilling pets!', 100), -(60, 'Bone Crusher', 'Automatically crushes your bones as they''re dropped for prayer experience. Toggle this perk using ::bonecrusher', 100), +(60, 'Bone Crusher', 'Automatically crushes your bones as they\'re dropped for prayer experience. Toggle this perk using ::bonecrusher', 100), (70, 'Runestone Knowledge', 'You are given extended knowledge of the runecrafting skill and can now craft double death, law, cosmic, blood and nature runes.', 200), -(71, 'Coin machine', 'Automatically bank all coins dropped from NPC''s and gives you 25% extra gold. Toggle this perk using ::coinmachine', 150), +(71, 'Coin machine', 'Automatically bank all coins dropped from NPC\'s and gives you 25% extra gold. Toggle this perk using ::coinmachine', 150), (72, 'Fight Cave Fanatic', 'Eliminates the first 25 waves from the tzhaar fight caves.', 50), (73, 'Decanter', 'Zahur will decant your noted potions if you have this perk.', 50); @@ -256,25 +212,17 @@ INSERT INTO `perks` (`product_id`, `name`, `description`, `price`) VALUES CREATE TABLE `player_logs` ( `username` varchar(22) NOT NULL DEFAULT '', - `public_chat` longtext, - `private_chat` longtext, - `clan_chat` longtext, - `address_log` longtext, - `command_log` longtext, - `trade_log` longtext, - `ge_log` longtext, - `duplication_log` longtext, - `duel_log` longtext + `public_chat` longtext DEFAULT NULL, + `private_chat` longtext DEFAULT NULL, + `clan_chat` longtext DEFAULT NULL, + `address_log` longtext DEFAULT NULL, + `command_log` longtext DEFAULT NULL, + `trade_log` longtext DEFAULT NULL, + `ge_log` longtext DEFAULT NULL, + `duplication_log` longtext DEFAULT NULL, + `duel_log` longtext DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `player_logs` --- - -INSERT INTO `player_logs` (`username`, `public_chat`, `private_chat`, `clan_chat`, `address_log`, `command_log`, `trade_log`, `ge_log`, `duplication_log`, `duel_log`) VALUES -('alex', '22/03/2016 20:50:12: a\n22/03/2016 20:54:32: a\n22/03/2016 20:57:25: a\n23/03/2016 00:15:05: a\n23/03/2016 00:16:15: a\n23/03/2016 10:58:38: oo\n23/03/2016 11:11:13: a\n23/03/2016 11:12:42: :item 11784 1\n23/03/2016 15:28:52: a\n23/03/2016 15:38:32: a\n25/03/2016 02:05:12: a\n25/03/2016 12:54:51: a\n25/03/2016 12:57:24: aa\n', '', '', '22/03/2016 20:50:05: 96.254.196.5\n22/03/2016 20:50:05: To be filled by O.E.M.\n22/03/2016 20:50:05: D4-3D-7E-97-2C-45\n22/03/2016 20:54:24: 96.254.196.5\n22/03/2016 20:54:24: To be filled by O.E.M.\n22/03/2016 20:54:24: D4-3D-7E-97-2C-45\n22/03/2016 20:57:17: 96.254.196.5\n22/03/2016 20:57:17: To be filled by O.E.M.\n22/03/2016 20:57:17: D4-3D-7E-97-2C-45\n22/03/2016 20:58:14: 96.254.196.5\n22/03/2016 20:58:14: To be filled by O.E.M.\n22/03/2016 20:58:14: D4-3D-7E-97-2C-45\n23/03/2016 00:13:28: 96.254.196.5\n23/03/2016 00:13:28: To be filled by O.E.M.\n23/03/2016 00:13:28: D4-3D-7E-97-2C-45\n23/03/2016 00:14:30: 96.254.196.5\n23/03/2016 00:14:30: To be filled by O.E.M.\n23/03/2016 00:14:30: D4-3D-7E-97-2C-45\n23/03/2016 10:57:24: 96.254.196.5\n23/03/2016 10:57:24: To be filled by O.E.M.\n23/03/2016 10:57:24: D4-3D-7E-97-2C-45\n23/03/2016 11:03:26: 96.254.196.5\n23/03/2016 11:03:26: To be filled by O.E.M.\n23/03/2016 11:03:26: D4-3D-7E-97-2C-45\n23/03/2016 11:11:08: 96.254.196.5\n23/03/2016 11:11:08: To be filled by O.E.M.\n23/03/2016 11:11:08: D4-3D-7E-97-2C-45\n23/03/2016 15:13:48: 96.254.196.5\n23/03/2016 15:13:48: To be filled by O.E.M.\n23/03/2016 15:13:48: D4-3D-7E-97-2C-45\n23/03/2016 15:58:08: 96.254.196.5\n23/03/2016 15:58:08: To be filled by O.E.M.\n23/03/2016 15:58:08: D4-3D-7E-97-2C-45\n25/03/2016 02:01:15: 96.254.196.5\n25/03/2016 02:01:15: To be filled by O.E.M.\n25/03/2016 02:01:15: D4-3D-7E-97-2C-45\n25/03/2016 02:05:02: 96.254.196.5\n25/03/2016 02:05:02: To be filled by O.E.M.\n25/03/2016 02:05:02: D4-3D-7E-97-2C-45\n25/03/2016 02:06:29: 96.254.196.5\n25/03/2016 02:06:29: To be filled by O.E.M.\n25/03/2016 02:06:29: D4-3D-7E-97-2C-45\n25/03/2016 10:05:04: 96.254.196.5\n25/03/2016 10:05:04: To be filled by O.E.M.\n25/03/2016 10:05:04: D4-3D-7E-97-2C-45\n25/03/2016 12:53:49: 96.254.196.5\n25/03/2016 12:53:49: To be filled by O.E.M.\n25/03/2016 12:53:49: D4-3D-7E-97-2C-45\n25/03/2016 12:57:18: 96.254.196.5\n25/03/2016 12:57:18: To be filled by O.E.M.\n25/03/2016 12:57:18: D4-3D-7E-97-2C-45\n25/03/2016 16:59:34: 96.254.196.5\n25/03/2016 16:59:34: To be filled by O.E.M.\n25/03/2016 16:59:34: D4-3D-7E-97-2C-45\n25/03/2016 19:52:32: 96.254.196.5\n25/03/2016 19:52:32: To be filled by O.E.M.\n25/03/2016 19:52:32: D4-3D-7E-97-2C-45\n', '22/03/2016 20:58:18: master\n22/03/2016 20:58:30: item 995 2147000000\n22/03/2016 20:58:34: item 4152 100\n22/03/2016 20:58:38: item 6585 5\n22/03/2016 20:58:41: item 7462 5\n22/03/2016 20:58:55: item 6570 10\n23/03/2016 11:04:21: item 4151 1\n23/03/2016 11:06:45: to 1241 1250 0\n23/03/2016 11:07:27: to 1303 1327 0\n23/03/2016 11:11:17: tele 1241 1250\n23/03/2016 11:11:57: tele 2205 3055\n23/03/2016 11:12:46: item 11785 1\n23/03/2016 11:12:54: item 861 1\n23/03/2016 11:13:00: item 892 1000\n23/03/2016 11:14:24: tele 2444 9825\n23/03/2016 11:15:28: tele 3736 5809\n23/03/2016 11:17:27: tele 1470 3687\n23/03/2016 11:17:48: tele 3222 3222\n23/03/2016 11:18:18: item 14666 1\n23/03/2016 11:18:37: item 14664 1\n23/03/2016 11:19:13: item 995 10000000\n23/03/2016 11:19:21: item 560 10000\n23/03/2016 11:19:25: item 561 10000\n23/03/2016 11:19:28: item 554 10000\n23/03/2016 11:19:37: item 562 10000\n23/03/2016 11:20:38: item 14839\n23/03/2016 11:20:49: item 14829 1\n23/03/2016 11:21:32: item 14636 1\n23/03/2016 11:21:42: item 14662 1\n23/03/2016 11:21:59: item 14671 1\n23/03/2016 11:22:53: item 14752 1\n23/03/2016 11:23:25: item 14726\n23/03/2016 11:23:45: item 14767\n23/03/2016 11:23:54: tele 0,50,50,62,28\n23/03/2016 11:23:56: tele 0,51,50,10,18\n23/03/2016 11:23:57: tele 0,51,50,18,6\n23/03/2016 11:23:58: tele 0,51,49,26,58\n23/03/2016 11:23:59: tele 0,51,49,30,44\n23/03/2016 11:24:01: tele 0,51,49,28,34\n23/03/2016 15:14:09: item 4151 1\n23/03/2016 15:14:13: item 14958 1\n23/03/2016 15:16:03: item 14821 1\n23/03/2016 15:16:27: item 14822 1\n23/03/2016 15:16:38: item 14827 1\n23/03/2016 15:17:16: item 14748 1\n23/03/2016 15:17:27: item 14749 1\n23/03/2016 15:19:05: item 14845 1\n23/03/2016 15:19:08: item 14846 1\n23/03/2016 15:19:18: item 14847 1\n23/03/2016 15:19:34: item 14851 1\n23/03/2016 15:19:39: item 14853 1\n23/03/2016 15:19:55: item 14850 1\n23/03/2016 15:20:09: item 14693 1\n23/03/2016 15:20:38: item 14638 1\n23/03/2016 15:20:41: item 14639 1\n23/03/2016 15:20:45: item 14640 1\n23/03/2016 15:20:48: item 14641 1\n23/03/2016 15:20:51: item 14642 1\n23/03/2016 15:20:54: item 14643 1\n23/03/2016 15:20:58: item 14644 1\n23/03/2016 15:21:02: item 14645 1\n23/03/2016 15:21:06: item 14646 1\n23/03/2016 15:21:12: item 14647 1\n23/03/2016 15:21:15: item 14648 1\n23/03/2016 15:21:18: item 14649 1\n23/03/2016 15:21:21: item 14650 1\n23/03/2016 15:21:25: item 14651 1\n23/03/2016 15:21:34: item 14652 1\n23/03/2016 15:21:38: item 14653 1\n23/03/2016 15:21:41: item 14654 1\n23/03/2016 15:21:45: item 14655 1\n23/03/2016 15:21:48: item 14656 1\n23/03/2016 15:23:21: empty\n23/03/2016 15:23:29: item 14657 1\n23/03/2016 15:23:33: item 14658 1\n23/03/2016 15:23:37: item 14659 1\n23/03/2016 15:23:45: item 14660 1\n23/03/2016 15:23:47: item 14661 1\n23/03/2016 15:24:00: item 14669 1\n23/03/2016 15:24:06: item 14673 1\n23/03/2016 15:24:43: item 14674 5\n23/03/2016 15:24:46: item 14675 1\n23/03/2016 15:24:49: item 14683 1\n23/03/2016 15:25:07: item 14810 1\n23/03/2016 15:25:14: item 14808 1\n23/03/2016 15:25:18: item 14809 1\n23/03/2016 15:25:27: item 14818 1\n23/03/2016 15:25:37: item 14823 1\n23/03/2016 15:25:44: item 14828 1\n23/03/2016 15:30:22: item 14896 1\n23/03/2016 15:30:28: item 14897 1\n23/03/2016 15:30:36: item 14898 1\n23/03/2016 15:30:38: item 14899 1\n23/03/2016 15:30:49: item 14900 1\n23/03/2016 15:40:36: item 14830 1\n25/03/2016 02:07:06: item 14962 1\n25/03/2016 02:07:10: item 14963 1\n25/03/2016 02:07:13: item 14964 1\n25/03/2016 02:07:19: item 14965 1\n25/03/2016 02:07:26: item 14966 1\n25/03/2016 02:07:35: item 14969 1\n25/03/2016 02:07:40: item 14970 1\n25/03/2016 02:07:43: item 14971 1\n25/03/2016 02:07:48: item 14972 1\n25/03/2016 02:07:51: item 14972 1\n25/03/2016 02:07:55: item 14972 100\n25/03/2016 02:08:00: item 14977 1\n25/03/2016 02:08:09: item 14980 1\n25/03/2016 02:08:15: item 14983 1\n25/03/2016 02:08:18: item 14984 1\n25/03/2016 02:08:29: item 14985 1\n25/03/2016 02:08:34: item 14988 1\n25/03/2016 02:08:37: item 14989 1\n25/03/2016 02:08:40: item 14990 1\n25/03/2016 02:08:42: item 14991 1\n25/03/2016 02:08:45: item 14992 1\n25/03/2016 02:08:48: item 14993 1\n25/03/2016 02:08:59: item 14994 1\n25/03/2016 02:09:03: item 14994 100\n25/03/2016 02:09:11: item 15007 2\n25/03/2016 02:09:15: item 15007 100\n25/03/2016 02:09:22: item 15010 1000\n25/03/2016 02:12:25: item 15015 50\n25/03/2016 02:12:43: item 15008 2\n25/03/2016 02:13:58: item 15004 1\n25/03/2016 02:14:00: item 15005 1\n25/03/2016 02:14:05: item 15006 1\n25/03/2016 02:14:14: item 15016 3\n25/03/2016 02:14:20: item 15018 3\n25/03/2016 02:14:23: item 15020 2\n25/03/2016 02:15:06: item 14936 1\n25/03/2016 02:15:37: item 14820 1\n25/03/2016 02:16:12: item 14792 1\n25/03/2016 02:16:15: item 14793 1\n25/03/2016 02:16:22: item 14788 3\n25/03/2016 02:16:34: item 14773 2\n25/03/2016 02:16:40: item 14774 2\n25/03/2016 02:16:53: item 14768 100\n25/03/2016 02:17:05: item 14767 3\n25/03/2016 02:17:09: item 14761 1\n25/03/2016 02:17:11: item 14762 1\n25/03/2016 02:17:14: item 14763 1\n25/03/2016 02:17:18: ultimatearmour\n25/03/2016 02:18:15: item 14673 2\n25/03/2016 02:19:20: item 14484 5\n25/03/2016 02:19:31: item 7462 5\n25/03/2016 02:19:37: item 6585 6\n25/03/2016 02:21:14: item 13734 1\n25/03/2016 02:21:19: item 13738 1\n25/03/2016 02:21:24: item 13740 1\n25/03/2016 02:21:27: item 14742 1\n25/03/2016 02:21:33: item 13742 1\n25/03/2016 02:21:40: item 13744 1\n25/03/2016 02:21:51: item 13736 1\n25/03/2016 02:22:27: item 13661 1\n25/03/2016 02:22:45: empty\n25/03/2016 12:57:26: npc 1 1\n25/03/2016 12:57:38: npc 8675 1\n25/03/2016 12:57:54: npc 8676 1\n25/03/2016 12:58:05: npc 8677 1\n25/03/2016 12:58:19: npc 8679 1\n25/03/2016 12:58:37: npc 8680 1\n25/03/2016 12:58:50: npc 8681 1\n25/03/2016 12:59:12: npc 8682 1\n25/03/2016 12:59:35: npc 8683 1\n25/03/2016 12:59:46: npc 8484 1\n25/03/2016 12:59:56: npc 8684 1\n25/03/2016 13:00:04: npc 8685 1\n25/03/2016 13:00:24: npc 8686 1\n25/03/2016 13:00:41: npc 8687 1\n25/03/2016 13:00:57: npc 8688 1\n25/03/2016 17:01:48: oskill uim alex 0 99\n25/03/2016 17:01:57: oskill 0 97 uim alex\n25/03/2016 17:03:22: oskill 0 95 uim_alex\n25/03/2016 17:03:52: oskill 1 93 uim_alex\n25/03/2016 17:05:41: oskill 2 97 uim_alex\n25/03/2016 17:06:05: oskill 3 95 uim_alex\n25/03/2016 19:52:53: npc 8679 1\n25/03/2016 19:53:14: npc 8688 1\n', '', '', '22/03/2016 20:58:35: Large networth increase - [incr=2188350000, old=140222, cur=2188490222].\n22/03/2016 20:59:05: Large networth increase - [incr=2224040620, old=140222, cur=2224180842].\n22/03/2016 20:59:23: Large networth increase - [incr=2224040620, old=140222, cur=2224180842].\n23/03/2016 00:13:39: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:13:49: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:14:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:15:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:15:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:16:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:16:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:17:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:17:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:18:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:18:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:19:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:19:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:20:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:20:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:21:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:21:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:22:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:22:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:23:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:23:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:24:12: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:24:42: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 00:25:04: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:57:39: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:58:09: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:58:39: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 10:58:49: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 11:03:47: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 11:04:17: Large networth increase - [incr=4294967296, old=-2070786454, cur=2224180842].\n23/03/2016 11:04:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:05:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:05:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:06:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:06:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:07:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:07:47: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:08:17: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:08:42: Large networth increase - [incr=4295428159, old=-2070786454, cur=2224641705].\n23/03/2016 11:11:30: Large networth increase - [incr=4294967296, old=-2070325591, cur=2224641705].\n23/03/2016 11:12:00: Large networth increase - [incr=4294967296, old=-2070325591, cur=2224641705].\n23/03/2016 11:12:30: Large networth increase - [incr=4294967296, old=-2070325591, cur=2224641705].\n23/03/2016 11:13:00: Large networth increase - [incr=4294972896, old=-2070325591, cur=2224647305].\n23/03/2016 11:13:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:14:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:14:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:15:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:15:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:16:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:16:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:17:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:17:30: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:18:00: Large networth increase - [incr=4295478816, old=-2070325591, cur=2225153225].\n23/03/2016 11:18:30: Large networth increase - [incr=4295547316, old=-2070325591, cur=2225221725].\n23/03/2016 11:19:00: Large networth increase - [incr=4295615816, old=-2070325591, cur=2225290225].\n23/03/2016 11:19:30: Large networth increase - [incr=4313525816, old=-2070325591, cur=2243200225].\n23/03/2016 11:20:00: Large networth increase - [incr=4313644316, old=-2070325591, cur=2243318725].\n23/03/2016 11:20:30: Large networth increase - [incr=4313644316, old=-2070325591, cur=2243318725].\n23/03/2016 11:21:00: Large networth increase - [incr=4313842316, old=-2070325591, cur=2243516725].\n23/03/2016 11:21:30: Large networth increase - [incr=4313842316, old=-2070325591, cur=2243516725].\n23/03/2016 11:22:00: Large networth increase - [incr=4315132966, old=-2070325591, cur=2244807375].\n23/03/2016 11:22:30: Large networth increase - [incr=4315132966, old=-2070325591, cur=2244807375].\n23/03/2016 11:23:00: Large networth increase - [incr=4315422766, old=-2070325591, cur=2245097175].\n23/03/2016 11:23:30: Large networth increase - [incr=4316422771, old=-2070325591, cur=2246097180].\n23/03/2016 11:24:00: Large networth increase - [incr=4316490778, old=-2070325591, cur=2246165187].\n23/03/2016 11:24:30: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:25:00: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:25:30: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:26:00: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 11:26:18: Large networth increase - [incr=4316522194, old=-2070325591, cur=2246196603].\n23/03/2016 15:14:00: Large networth increase - [incr=4294967296, old=-2048770693, cur=2246196603].\n23/03/2016 15:14:30: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:15:00: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:15:30: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:16:00: Large networth increase - [incr=4295548159, old=-2048770693, cur=2246777466].\n23/03/2016 15:16:30: Large networth increase - [incr=4295548161, old=-2048770693, cur=2246777468].\n23/03/2016 15:17:00: Large networth increase - [incr=4295548162, old=-2048770693, cur=2246777469].\n23/03/2016 15:17:30: Large networth increase - [incr=4295788164, old=-2048770693, cur=2247017471].\n23/03/2016 15:18:00: Large networth increase - [incr=4295779392, old=-2048770693, cur=2247008699].\n23/03/2016 15:18:30: Large networth increase - [incr=4295779392, old=-2048770693, cur=2247008699].\n23/03/2016 15:19:00: Large networth increase - [incr=4295779392, old=-2048770693, cur=2247008699].\n23/03/2016 15:19:13: Large networth increase - [incr=4295878392, old=-2048770693, cur=2247107699].\n23/03/2016 15:19:30: Large networth increase - [incr=4295977392, old=-2048770693, cur=2247206699].\n23/03/2016 15:20:00: Large networth increase - [incr=4296642243, old=-2048770693, cur=2247871550].\n23/03/2016 15:20:30: Large networth increase - [incr=4296642243, old=-2048770693, cur=2247871550].\n23/03/2016 15:21:00: Large networth increase - [incr=4296642250, old=-2048770693, cur=2247871557].\n23/03/2016 15:21:30: Large networth increase - [incr=4296642257, old=-2048770693, cur=2247871564].\n23/03/2016 15:22:00: Large networth increase - [incr=4296642262, old=-2048770693, cur=2247871569].\n23/03/2016 15:22:15: Large networth increase - [incr=4287120909, old=-2048770693, cur=2238350216].\n23/03/2016 15:22:30: Large networth increase - [incr=4287120909, old=-2048770693, cur=2238350216].\n23/03/2016 15:23:00: Large networth increase - [incr=4287120967, old=-2048770693, cur=2238350274].\n23/03/2016 15:23:30: Large networth increase - [incr=4296602716, old=-2048770693, cur=2247832023].\n23/03/2016 15:24:00: Large networth increase - [incr=4296700670, old=-2048770693, cur=2247929977].\n23/03/2016 15:24:30: Large networth increase - [incr=4296700680, old=-2048770693, cur=2247929987].\n23/03/2016 15:25:00: Large networth increase - [incr=4297303180, old=-2048770693, cur=2248532487].\n23/03/2016 15:25:30: Large networth increase - [incr=4297303381, old=-2048770693, cur=2248532688].\n23/03/2016 15:26:00: Large networth increase - [incr=4297303383, old=-2048770693, cur=2248532690].\n23/03/2016 15:26:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:27:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:27:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:28:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:28:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:29:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:29:30: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:30:00: Large networth increase - [incr=4297300383, old=-2048770693, cur=2248529690].\n23/03/2016 15:30:30: Large networth increase - [incr=4297300508, old=-2048770693, cur=2248529815].\n23/03/2016 15:31:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:31:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:32:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:32:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:33:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:33:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:34:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:34:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:35:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:35:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:36:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:36:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:37:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:37:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:38:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:38:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:39:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:39:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:40:00: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:40:30: Large networth increase - [incr=4297300733, old=-2048770693, cur=2248530040].\n23/03/2016 15:41:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:41:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:42:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:42:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:43:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:43:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:44:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:44:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:45:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:45:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:46:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:46:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:47:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:47:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:48:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:48:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:49:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:49:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:50:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:50:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:51:00: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:51:30: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:51:51: Large networth increase - [incr=4297300734, old=-2048770693, cur=2248530041].\n23/03/2016 15:58:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 15:58:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 15:59:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 15:59:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:00:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:00:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:01:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:01:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:02:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:02:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:03:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:03:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:04:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:04:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:05:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:05:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:06:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:06:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:07:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:07:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:08:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:08:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:09:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:09:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:10:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:10:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:11:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:11:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:12:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:12:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:13:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:13:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:14:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:14:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:15:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:15:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:16:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:16:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:17:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:17:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:18:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:18:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:19:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:19:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:20:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:20:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:21:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:21:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:22:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:22:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:23:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:23:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:24:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:24:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:25:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:25:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:26:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:26:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:27:17: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:27:47: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:28:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:28:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:29:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:29:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:30:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:30:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:31:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:31:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:32:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:32:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:33:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:33:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:34:18: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n23/03/2016 16:34:24: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:01:34: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:02:04: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:02:15: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:05:14: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:05:44: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:05:49: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:06:48: Large networth increase - [incr=4294967296, old=-1981014433, cur=2313952863].\n25/03/2016 02:07:18: Large networth increase - [incr=4295188297, old=-1981014433, cur=2314173864].\n25/03/2016 02:07:48: Large networth increase - [incr=4295692860, old=-1981014433, cur=2314678427].\n25/03/2016 02:08:18: Large networth increase - [incr=4296962366, old=-1981014433, cur=2315947933].\n25/03/2016 02:08:48: Large networth increase - [incr=4297532566, old=-1981014433, cur=2316518133].\n25/03/2016 02:09:18: Large networth increase - [incr=4297538787, old=-1981014433, cur=2316524354].\n25/03/2016 02:09:48: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:10:18: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:10:48: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:11:18: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:11:48: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:12:18: Large networth increase - [incr=4297558787, old=-1981014433, cur=2316544354].\n25/03/2016 02:12:48: Large networth increase - [incr=4297559989, old=-1981014433, cur=2316545556].\n25/03/2016 02:13:18: Large networth increase - [incr=4297559989, old=-1981014433, cur=2316545556].\n25/03/2016 02:13:48: Large networth increase - [incr=4297559989, old=-1981014433, cur=2316545556].\n25/03/2016 02:14:18: Large networth increase - [incr=4297889993, old=-1981014433, cur=2316875560].\n25/03/2016 02:14:48: Large networth increase - [incr=4298196013, old=-1981014433, cur=2317181580].\n25/03/2016 02:15:18: Large networth increase - [incr=4298316013, old=-1981014433, cur=2317301580].\n25/03/2016 02:15:48: Large networth increase - [incr=4298316014, old=-1981014433, cur=2317301581].\n25/03/2016 02:16:18: Large networth increase - [incr=4298371014, old=-1981014433, cur=2317356581].\n25/03/2016 02:16:48: Large networth increase - [incr=4298482824, old=-1981014433, cur=2317468391].\n25/03/2016 02:17:18: Large networth increase - [incr=4298688851, old=-1981014433, cur=2317674418].\n25/03/2016 02:17:48: Large networth increase - [incr=4298688851, old=-1981014433, cur=2317674418].\n25/03/2016 02:18:18: Large networth increase - [incr=4298688871, old=-1981014433, cur=2317674438].\n25/03/2016 02:18:48: Large networth increase - [incr=4298688871, old=-1981014433, cur=2317674438].\n25/03/2016 02:19:18: Large networth increase - [incr=4298688871, old=-1981014433, cur=2317674438].\n25/03/2016 02:19:48: Large networth increase - [incr=4335351555, old=-1981014433, cur=2354337122].\n25/03/2016 02:20:18: Large networth increase - [incr=4335351555, old=-1981014433, cur=2354337122].\n25/03/2016 02:20:48: Large networth increase - [incr=4335351555, old=-1981014433, cur=2354337122].\n25/03/2016 02:21:18: Large networth increase - [incr=4335421555, old=-1981014433, cur=2354407122].\n25/03/2016 02:21:48: Large networth increase - [incr=4343466555, old=-1981014433, cur=2362452122].\n25/03/2016 02:22:18: Large networth increase - [incr=4344866555, old=-1981014433, cur=2363852122].\n25/03/2016 02:22:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:23:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:23:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:24:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:24:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:25:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:25:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:26:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:26:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:27:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:27:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:28:18: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:28:48: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 02:29:20: Large networth increase - [incr=4335348502, old=-1981014433, cur=2354334069].\n25/03/2016 10:05:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:05:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:06:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:06:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:07:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:07:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:08:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:08:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:09:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:09:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:10:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:10:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:11:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:11:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:12:16: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:12:46: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 10:13:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:54:20: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:54:50: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:55:20: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:55:50: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:56:20: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:56:50: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:56:53: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:57:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:58:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:58:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:59:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 12:59:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:00:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:00:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:01:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:01:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:02:06: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:02:36: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 13:03:06: Large networth increase - [incr=4294967295, old=-1940633227, cur=2354334068].\n25/03/2016 13:03:37: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 16:59:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:00:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:00:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:01:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:01:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:02:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:02:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:03:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:03:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:04:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:04:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:05:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:05:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:06:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:06:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:07:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:07:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:08:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:08:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:09:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:09:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:10:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:10:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:11:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:11:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:12:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:12:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:13:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:13:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:14:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:14:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:15:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:15:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:16:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:16:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:17:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:17:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:18:17: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:18:47: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 17:19:08: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:52:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:53:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:53:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:54:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:54:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:55:14: Large networth increase - [incr=4294967295, old=-1940633227, cur=2354334068].\n25/03/2016 19:55:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:56:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:56:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:57:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:57:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:58:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:58:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:59:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 19:59:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:00:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:00:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:01:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:01:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:02:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:02:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:03:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:03:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:04:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:04:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:05:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:05:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:06:14: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:06:44: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n25/03/2016 20:06:56: Large networth increase - [incr=4294967296, old=-1940633227, cur=2354334069].\n', ''), -('uim_alex', '22/03/2016 20:43:13: a\n23/03/2016 00:08:13: a\n23/03/2016 11:28:55: oo\n23/03/2016 11:29:00: cant even bank niqqa\n23/03/2016 13:43:48: yea\n24/03/2016 23:04:13: a\n25/03/2016 17:13:25: oo\n', '', '', '22/03/2016 20:43:03: 96.254.196.5\n22/03/2016 20:43:03: To be filled by O.E.M.\n22/03/2016 20:43:03: D4-3D-7E-97-2C-45\n22/03/2016 21:00:30: 96.254.196.5\n22/03/2016 21:00:30: To be filled by O.E.M.\n22/03/2016 21:00:30: D4-3D-7E-97-2C-45\n22/03/2016 21:46:43: 96.254.196.5\n22/03/2016 21:46:43: To be filled by O.E.M.\n22/03/2016 21:46:43: D4-3D-7E-97-2C-45\n22/03/2016 22:02:01: 96.254.196.5\n22/03/2016 22:02:01: To be filled by O.E.M.\n22/03/2016 22:02:01: D4-3D-7E-97-2C-45\n23/03/2016 00:06:22: 96.254.196.5\n23/03/2016 00:06:22: To be filled by O.E.M.\n23/03/2016 00:06:22: D4-3D-7E-97-2C-45\n23/03/2016 00:07:33: 96.254.196.5\n23/03/2016 00:07:33: To be filled by O.E.M.\n23/03/2016 00:07:33: D4-3D-7E-97-2C-45\n23/03/2016 08:16:12: 96.254.196.5\n23/03/2016 08:16:12: To be filled by O.E.M.\n23/03/2016 08:16:12: D4-3D-7E-97-2C-45\n23/03/2016 11:28:37: 96.254.196.5\n23/03/2016 11:28:37: To be filled by O.E.M.\n23/03/2016 11:28:37: D4-3D-7E-97-2C-45\n23/03/2016 13:24:24: 96.254.196.5\n23/03/2016 13:24:24: To be filled by O.E.M.\n23/03/2016 13:24:24: D4-3D-7E-97-2C-45\n24/03/2016 23:00:51: 96.254.196.5\n24/03/2016 23:00:51: To be filled by O.E.M.\n24/03/2016 23:00:51: D4-3D-7E-97-2C-45\n25/03/2016 16:57:31: 96.254.196.5\n25/03/2016 16:57:31: To be filled by O.E.M.\n25/03/2016 16:57:31: D4-3D-7E-97-2C-45\n', '22/03/2016 22:02:12: ultimatearmour\n', '', '', '', ''); - -- -------------------------------------------------------- -- @@ -296,132 +244,9 @@ CREATE TABLE `security` ( `id` int(11) UNSIGNED NOT NULL, `ip` longtext NOT NULL, `type` int(11) NOT NULL, - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP + `timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `security` --- - -INSERT INTO `security` (`id`, `ip`, `type`, `timestamp`) VALUES -(1, '127.0.0.1', 1, '2016-03-23 00:31:58'), -(2, '127.0.0.1', 2, '2016-03-23 00:32:14'), -(3, '127.0.0.1', 2, '2016-03-23 00:32:20'), -(4, '127.0.0.1', 2, '2016-03-23 00:32:26'), -(5, '127.0.0.1', 1, '2016-03-23 00:32:35'), -(6, '127.0.0.1', 1, '2016-03-23 00:32:40'), -(7, '127.0.0.1', 1, '2016-03-23 00:32:40'), -(8, '127.0.0.1', 1, '2016-03-23 00:32:49'), -(9, '127.0.0.1', 1, '2016-03-23 00:32:51'), -(10, '127.0.0.1', 1, '2016-03-23 00:32:51'), -(11, '127.0.0.1', 1, '2016-03-23 00:33:00'), -(12, '192.168.1.4', 1, '2016-03-23 00:38:03'), -(13, '192.168.1.4', 1, '2016-03-23 00:38:55'), -(14, '192.168.1.4', 1, '2016-03-23 00:38:57'), -(15, '192.168.1.4', 1, '2016-03-23 00:39:38'), -(16, '192.168.1.4', 2, '2016-03-23 00:39:42'), -(17, '192.168.1.4', 1, '2016-03-23 00:39:44'), -(18, '192.168.1.4', 1, '2016-03-23 00:39:46'), -(19, '192.168.1.4', 2, '2016-03-23 00:39:54'), -(20, '192.168.1.4', 2, '2016-03-23 00:39:57'), -(21, '192.168.1.4', 1, '2016-03-23 00:42:22'), -(22, '192.168.1.4', 1, '2016-03-23 00:43:20'), -(23, '192.168.1.4', 2, '2016-03-23 00:43:21'), -(24, '192.168.1.4', 2, '2016-03-23 00:43:29'), -(25, '192.168.1.4', 2, '2016-03-23 00:43:31'), -(26, '192.168.1.4', 1, '2016-03-23 00:54:42'), -(27, '192.168.1.4', 1, '2016-03-23 00:59:33'), -(28, '192.168.1.4', 2, '2016-03-23 00:59:35'), -(29, '192.168.1.4', 1, '2016-03-23 00:59:39'), -(30, '192.168.1.4', 1, '2016-03-23 00:59:41'), -(31, '192.168.1.4', 2, '2016-03-23 00:59:47'), -(32, '192.168.1.4', 2, '2016-03-23 00:59:50'), -(33, '192.168.1.4', 2, '2016-03-23 00:59:55'), -(34, '192.168.1.4', 2, '2016-03-23 00:59:56'), -(35, '192.168.1.4', 2, '2016-03-23 01:00:03'), -(36, '192.168.1.4', 1, '2016-03-23 01:45:19'), -(37, '192.168.1.4', 2, '2016-03-23 01:45:22'), -(38, '192.168.1.4', 2, '2016-03-23 01:45:24'), -(39, '192.168.1.4', 2, '2016-03-23 01:45:25'), -(40, '192.168.1.4', 2, '2016-03-23 01:46:55'), -(41, '192.168.1.4', 1, '2016-03-23 01:47:04'), -(42, '186.222.2.208', 1, '2016-03-23 01:47:04'), -(43, '192.168.1.4', 2, '2016-03-23 01:49:28'), -(44, '184.105.247.195', 1, '2016-03-23 02:36:41'), -(45, '127.0.0.1', 1, '2016-03-23 02:58:42'), -(46, '127.0.0.1', 1, '2016-03-23 02:58:44'), -(47, '127.0.0.1', 2, '2016-03-23 02:58:47'), -(48, '127.0.0.1', 2, '2016-03-23 02:58:54'), -(49, '127.0.0.1', 2, '2016-03-23 02:59:01'), -(50, '127.0.0.1', 2, '2016-03-23 02:59:03'), -(51, '127.0.0.1', 2, '2016-03-23 02:59:07'), -(52, '127.0.0.1', 2, '2016-03-23 03:10:16'), -(53, '127.0.0.1', 2, '2016-03-23 03:10:18'), -(54, '127.0.0.1', 2, '2016-03-23 03:10:19'), -(55, '192.168.1.4', 1, '2016-03-23 04:06:09'), -(56, '192.168.1.4', 1, '2016-03-23 04:06:11'), -(57, '192.168.1.4', 2, '2016-03-23 04:06:13'), -(58, '127.0.0.1', 1, '2016-03-23 12:34:21'), -(59, '127.0.0.1', 1, '2016-03-23 12:34:25'), -(60, '127.0.0.1', 2, '2016-03-23 12:34:28'), -(61, '127.0.0.1', 1, '2016-03-23 14:59:05'), -(62, '127.0.0.1', 1, '2016-03-23 14:59:11'), -(63, '127.0.0.1', 2, '2016-03-23 14:59:14'), -(64, '127.0.0.1', 2, '2016-03-23 14:59:16'), -(65, '127.0.0.1', 2, '2016-03-23 14:59:32'), -(66, '127.0.0.1', 2, '2016-03-23 14:59:37'), -(67, '127.0.0.1', 2, '2016-03-23 14:59:38'), -(68, '127.0.0.1', 2, '2016-03-23 14:59:44'), -(69, '127.0.0.1', 2, '2016-03-23 14:59:45'), -(70, '127.0.0.1', 2, '2016-03-23 14:59:57'), -(71, '127.0.0.1', 2, '2016-03-23 14:59:59'), -(72, '127.0.0.1', 1, '2016-03-23 15:00:59'), -(73, '127.0.0.1', 1, '2016-03-23 15:00:59'), -(74, '127.0.0.1', 1, '2016-03-23 15:01:07'), -(75, '127.0.0.1', 1, '2016-03-23 15:01:09'), -(76, '127.0.0.1', 1, '2016-03-23 15:01:20'), -(77, '127.0.0.1', 1, '2016-03-23 15:01:25'), -(78, '127.0.0.1', 1, '2016-03-23 15:01:25'), -(79, '127.0.0.1', 1, '2016-03-23 15:01:28'), -(80, '127.0.0.1', 1, '2016-03-23 15:01:28'), -(81, '127.0.0.1', 1, '2016-03-23 15:01:30'), -(82, '127.0.0.1', 2, '2016-03-23 15:01:42'), -(83, '127.0.0.1', 1, '2016-03-23 15:34:51'), -(84, '127.0.0.1', 2, '2016-03-23 15:34:53'), -(85, '127.0.0.1', 2, '2016-03-23 15:34:55'), -(86, '95.110.143.69', 1, '2016-03-23 20:15:46'), -(87, '66.249.66.130', 1, '2016-03-25 03:34:11'), -(88, '66.249.66.130', 1, '2016-03-25 03:36:48'), -(89, '66.249.66.130', 1, '2016-03-25 03:36:49'), -(90, '66.249.66.190', 1, '2016-03-25 03:37:22'), -(91, '66.249.66.190', 1, '2016-03-25 03:37:22'), -(92, '66.249.66.130', 1, '2016-03-25 03:38:20'), -(93, '66.249.66.130', 1, '2016-03-25 03:38:20'), -(94, '66.249.66.190', 1, '2016-03-25 03:39:12'), -(95, '179.96.23.6', 1, '2016-03-25 06:24:54'), -(96, '180.76.15.156', 1, '2016-03-25 14:22:58'), -(97, '178.64.31.84', 1, '2016-03-25 16:05:46'), -(98, '54.208.125.234', 1, '2016-03-25 17:45:37'), -(99, '54.208.125.234', 1, '2016-03-25 17:45:38'), -(100, '54.208.125.234', 1, '2016-03-25 17:45:40'), -(101, '187.85.96.60', 1, '2016-03-25 18:57:34'), -(102, '76.195.103.3', 1, '2016-03-25 19:39:32'), -(103, '127.0.0.1', 1, '2016-03-25 20:44:36'), -(104, '192.168.1.4', 1, '2016-03-25 20:44:45'), -(105, '192.168.1.4', 1, '2016-03-25 20:45:16'), -(106, '192.168.1.4', 2, '2016-03-25 20:45:18'), -(107, '192.168.1.4', 2, '2016-03-25 20:45:18'), -(108, '192.168.1.4', 2, '2016-03-25 20:55:29'), -(109, '192.168.1.4', 2, '2016-03-25 20:55:31'), -(110, '192.168.1.4', 2, '2016-03-25 20:55:33'), -(111, '192.168.1.4', 2, '2016-03-25 20:55:37'), -(112, '192.168.1.4', 2, '2016-03-25 20:55:40'), -(113, '192.168.1.4', 2, '2016-03-25 20:55:41'), -(114, '127.0.0.1', 1, '2016-03-25 21:14:41'), -(115, '127.0.0.1', 1, '2016-03-25 21:14:50'), -(116, '127.0.0.1', 2, '2016-03-25 21:14:52'), -(117, '179.215.124.123', 1, '2016-03-25 22:53:35'); - -- -------------------------------------------------------- -- @@ -432,7 +257,7 @@ CREATE TABLE `sys_logs` ( `id` int(11) UNSIGNED NOT NULL, `message` longtext NOT NULL, `log_type` int(2) DEFAULT NULL, - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), `IP_ADDRESS` varchar(30) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -446,8 +271,8 @@ CREATE TABLE `validations` ( `id` int(11) UNSIGNED NOT NULL, `username` varchar(20) DEFAULT NULL, `code` varchar(30) DEFAULT NULL, - `type` int(2) NOT NULL DEFAULT '0', - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `type` int(2) NOT NULL DEFAULT 0, + `timestamp` timestamp NOT NULL DEFAULT current_timestamp(), `value` longtext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -461,7 +286,7 @@ CREATE TABLE `votes` ( `id` int(11) NOT NULL, `username` varchar(50) NOT NULL DEFAULT '', `site` varchar(50) NOT NULL, - `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP + `timestamp` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- @@ -472,23 +297,13 @@ CREATE TABLE `votes` ( CREATE TABLE `voting_sites` ( `name` varchar(20) NOT NULL DEFAULT 'Null', - `wait` int(5) NOT NULL DEFAULT '12', - `credits` int(2) NOT NULL DEFAULT '1', + `wait` int(5) NOT NULL DEFAULT 12, + `credits` int(2) NOT NULL DEFAULT 1, `link` varchar(500) NOT NULL DEFAULT 'http://ariosrsps.com', `get_command` varchar(20) NOT NULL DEFAULT '', `host_name` varchar(500) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; --- --- Dumping data for table `voting_sites` --- - -INSERT INTO `voting_sites` (`name`, `wait`, `credits`, `link`, `get_command`, `host_name`) VALUES -('rune-server', 24, 1, 'http://ariosrsps.com', 'data', ''), -('runelocus', 12, 1, 'http://ariosrsps.com', 'usr', ''), -('top-100-arena', 12, 1, 'http://ariosrsps.com', 'postback', ''), -('topg', 12, 1, 'http://ariosrsps.com', 'p_resp', 'monitor.topg.org'); - -- -------------------------------------------------------- -- @@ -498,11 +313,11 @@ INSERT INTO `voting_sites` (`name`, `wait`, `credits`, `link`, `get_command`, `h CREATE TABLE `worlds` ( `world` int(2) UNSIGNED NOT NULL, `ip` varchar(20) NOT NULL DEFAULT '127.0.0.1', - `players` int(5) NOT NULL DEFAULT '0', - `country` int(1) NOT NULL DEFAULT '0', + `players` int(5) NOT NULL DEFAULT 0, + `country` int(1) NOT NULL DEFAULT 0, `member` int(11) NOT NULL, - `revision` int(3) NOT NULL DEFAULT '530', - `lastResponse` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP + `revision` int(3) NOT NULL DEFAULT 530, + `lastResponse` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- @@ -510,7 +325,7 @@ CREATE TABLE `worlds` ( -- INSERT INTO `worlds` (`world`, `ip`, `players`, `country`, `member`, `revision`, `lastResponse`) VALUES -(1, '127.0.0.1', 0, 22, 1, 530, '2016-03-26 00:07:00'); +(1, '127.0.0.1', 0, 22, 1, 530, '2019-11-06 00:24:54'); -- -- Indexes for dumped tables @@ -597,46 +412,56 @@ ALTER TABLE `worlds` -- ALTER TABLE `dev_log` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; + -- -- AUTO_INCREMENT for table `highscores` -- ALTER TABLE `highscores` - MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; + -- -- AUTO_INCREMENT for table `members` -- ALTER TABLE `members` - MODIFY `UID` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + MODIFY `UID` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `messages` -- ALTER TABLE `messages` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `perks` -- ALTER TABLE `perks` MODIFY `product_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74; + -- -- AUTO_INCREMENT for table `security` -- ALTER TABLE `security` - MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118; + MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `sys_logs` -- ALTER TABLE `sys_logs` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `validations` -- ALTER TABLE `validations` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; + -- -- AUTO_INCREMENT for table `votes` -- ALTER TABLE `votes` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; +COMMIT; + /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/Server/key.cfg b/Server/key.cfg deleted file mode 100644 index d25a6c446..000000000 --- a/Server/key.cfg +++ /dev/null @@ -1 +0,0 @@ -40bd001563085fc35165329ea1ff5c5ecbdbbeef \ No newline at end of file diff --git a/Server/org/crandor/cache/def/impl/test.txt b/Server/org/crandor/cache/def/impl/test.txt new file mode 100644 index 000000000..2cd6e87a9 --- /dev/null +++ b/Server/org/crandor/cache/def/impl/test.txt @@ -0,0 +1,365 @@ +private void readValues(int i, InputStream stream, int opcode) { + if (opcode != 1 && opcode != 5) { + if (opcode != 2) { + if (opcode != 14) { + if (opcode != 15) { + if (opcode == 17) { + projectileCliped = false; + clipType = 0; + } else if (opcode != 18) { + if (opcode == 19) + secondInt = stream.readUnsignedByte(); + else if (opcode == 21) + aByte3912 = (byte) 1; + else if (opcode != 22) { + if (opcode != 23) { + if (opcode != 24) { + if (opcode == 27) + clipType = 1; + else if (opcode == 28) + anInt3892 = (stream + .readUnsignedByte() << 2); + else if (opcode != 29) { + if (opcode != 39) { + if (opcode < 30 || opcode >= 35) { + if (opcode == 40) { + int i_53_ = (stream + .readUnsignedByte()); + originalColors = new short[i_53_]; + modifiedColors = new short[i_53_]; + for (int i_54_ = 0; i_53_ > i_54_; i_54_++) { + originalColors[i_54_] = (short) (stream + .readUnsignedShort()); + modifiedColors[i_54_] = (short) (stream + .readUnsignedShort()); + } + } else if (opcode != 41) { + if (opcode != 42) { + if (opcode != 62) { + if (opcode != 64) { + if (opcode == 65) + anInt3902 = stream + .readUnsignedShort(); + else if (opcode != 66) { + if (opcode != 67) { + if (opcode == 69) + anInt3925 = stream + .readUnsignedByte(); + else if (opcode != 70) { + if (opcode == 71) + anInt3889 = stream + .readShort() << 2; + else if (opcode != 72) { + if (opcode == 73) + secondBool = true; + else if (opcode == 74) + notCliped = true; + else if (opcode != 75) { + if (opcode != 77 + && opcode != 92) { + if (opcode == 78) { + anInt3860 = stream + .readUnsignedShort(); + anInt3904 = stream + .readUnsignedByte(); + } else if (opcode != 79) { + if (opcode == 81) { + aByte3912 = (byte) 2; + anInt3882 = 256 * stream + .readUnsignedByte(); + } else if (opcode != 82) { + if (opcode == 88) + aBoolean3853 = false; + else if (opcode != 89) { + if (opcode == 90) + aBoolean3870 = true; + else if (opcode != 91) { + if (opcode != 93) { + if (opcode == 94) + aByte3912 = (byte) 4; + else if (opcode != 95) { + if (opcode != 96) { + if (opcode == 97) + aBoolean3866 = true; + else if (opcode == 98) + aBoolean3923 = true; + else if (opcode == 99) { + anInt3857 = stream + .readUnsignedByte(); + anInt3835 = stream + .readUnsignedShort(); + } else if (opcode == 100) { + anInt3844 = stream + .readUnsignedByte(); + anInt3913 = stream + .readUnsignedShort(); + } else if (opcode != 101) { + if (opcode == 102) + anInt3838 = stream + .readUnsignedShort(); + else if (opcode == 103) + thirdInt = 0; + else if (opcode != 104) { + if (opcode == 105) + aBoolean3906 = true; + else if (opcode == 106) { + int i_55_ = stream + .readUnsignedByte(); + anIntArray3869 = new int[i_55_]; + anIntArray3833 = new int[i_55_]; + for (int i_56_ = 0; i_56_ < i_55_; i_56_++) { + anIntArray3833[i_56_] = stream + .readUnsignedShort(); + int i_57_ = stream + .readUnsignedByte(); + anIntArray3869[i_56_] = i_57_; + anInt3881 += i_57_; + } + } else if (opcode == 107) + anInt3851 = stream + .readUnsignedShort(); + else if (opcode >= 150 + && opcode < 155) { + options[opcode + + -150] = stream + .readString(); + /*if (!loader.showOptions) + options[opcode + -150] = null;*/ + } else if (opcode != 160) { + if (opcode == 162) { + aByte3912 = (byte) 3; + anInt3882 = stream + .readInt(); + } else if (opcode == 163) { + aByte3847 = (byte) stream + .readByte(); + aByte3849 = (byte) stream + .readByte(); + aByte3837 = (byte) stream + .readByte(); + aByte3914 = (byte) stream + .readByte(); + } else if (opcode != 164) { + if (opcode != 165) { + if (opcode != 166) { + if (opcode == 167) + anInt3921 = stream + .readUnsignedShort(); + else if (opcode != 168) { + if (opcode == 169) { + aBoolean3845 = true; + //added opcode + }else if (opcode == 170) { + int anInt3383 = stream.readUnsignedSmart(); + //added opcode + }else if (opcode == 171) { + int anInt3362 = stream.readUnsignedSmart(); + //added opcode + }else if (opcode == 173) { + int anInt3302 = stream.readUnsignedShort(); + int anInt3336 = stream.readUnsignedShort(); + //added opcode + }else if (opcode == 177) { + boolean ub = true; + //added opcode + }else if (opcode == 178) { + int db = stream.readUnsignedByte(); + } else if (opcode == 249) { + int i_58_ = stream + .readUnsignedByte(); + if (aClass194_3922 == null) { + /*int i_59_ = Class307 + .method3331( + (byte) -117, + i_58_); + aClass194_3922 = new HashTable( + i_59_);*/ + } + for (int i_60_ = 0; i_60_ < i_58_; i_60_++) { + boolean bool = stream + .readUnsignedByte() == 1; + int i_61_ = stream.read24BitInt(); + Object class279; + if (!bool) + /*class279 = new IntegerNode(*/ + stream + .readInt();//); + else + /*class279 = new Class279_Sub4(*/ + stream + .readString();//); + /*aClass194_3922 + .method1598( + (long) i_61_, + -125, + class279);*/ + } + } + } else + aBoolean3894 = true; + } else + anInt3877 = stream + .readShort(); + } else + anInt3875 = stream + .readShort(); + } else + anInt3834 = stream + .readShort(); + } else { + int i_62_ = stream + .readUnsignedByte(); + anIntArray3908 = new int[i_62_]; + for (int i_63_ = 0; i_62_ > i_63_; i_63_++) + anIntArray3908[i_63_] = stream + .readUnsignedShort(); + } + } else + anInt3865 = stream + .readUnsignedByte(); + } else + anInt3850 = stream + .readUnsignedByte(); + } else + aBoolean3924 = true; + } else { + aByte3912 = (byte) 5; + anInt3882 = stream + .readShort(); + } + } else { + aByte3912 = (byte) 3; + anInt3882 = stream + .readUnsignedShort(); + } + } else + aBoolean3873 = true; + } else + aBoolean3895 = false; + } else + aBoolean3891 = true; + } else { + anInt3900 = stream + .readUnsignedShort(); + anInt3905 = stream + .readUnsignedShort(); + anInt3904 = stream + .readUnsignedByte(); + int i_64_ = stream + .readUnsignedByte(); + anIntArray3859 = new int[i_64_]; + for (int i_65_ = 0; i_65_ < i_64_; i_65_++) + anIntArray3859[i_65_] = stream + .readUnsignedShort(); + } + } else { + configFileId = stream + .readUnsignedShort(); + if (configFileId == 65535) + configFileId = -1; + configId = stream + .readUnsignedShort(); + if (configId == 65535) + configId = -1; + int i_66_ = -1; + if (opcode == 92) { + i_66_ = stream + .readUnsignedShort(); + if (i_66_ == 65535) + i_66_ = -1; + } + int i_67_ = stream + .readUnsignedByte(); + childrenIds = new int[i_67_ + - -2]; + for (int i_68_ = 0; i_67_ >= i_68_; i_68_++) { + childrenIds[i_68_] = stream + .readUnsignedShort(); + if (childrenIds[i_68_] == 65535) + childrenIds[i_68_] = -1; + } + childrenIds[i_67_ + 1] = i_66_; + } + } else + anInt3855 = stream + .readUnsignedByte(); + } else + anInt3915 = stream + .readShort() << 2; + } else + anInt3883 = stream + .readShort() << 2; + } else + anInt3917 = stream + .readUnsignedShort(); + } else + anInt3841 = stream + .readUnsignedShort(); + } else + aBoolean3872 = false; + } else + aBoolean3839 = true; + } else { + int i_69_ = (stream + .readUnsignedByte()); + aByteArray3858 = (new byte[i_69_]); + for (int i_70_ = 0; i_70_ < i_69_; i_70_++) + aByteArray3858[i_70_] = (byte) (stream + .readByte()); + } + } else { + int i_71_ = (stream + .readUnsignedByte()); + aShortArray3920 = new short[i_71_]; + aShortArray3919 = new short[i_71_]; + for (int i_72_ = 0; i_71_ > i_72_; i_72_++) { + aShortArray3920[i_72_] = (short) (stream + .readUnsignedShort()); + aShortArray3919[i_72_] = (short) (stream + .readUnsignedShort()); + } + } + } else + options[-30 + + opcode] = (stream + .readString()); + } else + anInt3840 = (stream.readByte() * 5); + } else + anInt3878 = stream.readByte(); + } else { + anInt3876 = stream.readUnsignedShort(); + if (anInt3876 == 65535) + anInt3876 = -1; + } + } else + thirdInt = 1; + } else + aBoolean3867 = true; + } else + projectileCliped = false; + } else + sizeY = stream.readUnsignedByte(); + } else + sizeX = stream.readUnsignedByte(); + } else + name = stream.readString(); + } else { + boolean aBoolean1162 = false; + if (opcode == 5 && aBoolean1162) + method3297(stream); + int i_73_ = stream.readUnsignedByte(); + anIntArrayArray3916 = new int[i_73_][]; + aByteArray3899 = new byte[i_73_]; + for (int i_74_ = 0; i_74_ < i_73_; i_74_++) { + aByteArray3899[i_74_] = (byte) stream.readByte(); + int i_75_ = stream.readUnsignedByte(); + anIntArrayArray3916[i_74_] = new int[i_75_]; + for (int i_76_ = 0; i_75_ > i_76_; i_76_++) + anIntArrayArray3916[i_74_][i_76_] = stream + .readUnsignedShort(); + } + if (opcode == 5 && !aBoolean1162) + method3297(stream); + } + } \ No newline at end of file diff --git a/Server/replay_pid2760.log b/Server/replay_pid2760.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/Server/replay_pid3824.log b/Server/replay_pid3824.log deleted file mode 100644 index 6d3e4f35f..000000000 --- a/Server/replay_pid3824.log +++ /dev/null @@ -1,548 +0,0 @@ -JvmtiExport can_access_local_variables 0 -JvmtiExport can_hotswap_or_post_breakpoint 0 -JvmtiExport can_post_on_exceptions 0 -# 127 ciObject found -ciMethod java/lang/Object ()V 4097 1 21822 0 -1 -ciMethod java/lang/String ([CII)V 2985 1 647 0 -1 -ciMethod java/lang/AbstractStringBuilder (I)V 1025 1 216 0 -1 -ciMethod java/lang/AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder; 1761 1 407 0 -1 -ciMethod java/lang/AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder; 0 0 2 0 -1 -ciMethod java/lang/StringBuilder ()V 897 1 162 0 -1 -ciMethod java/lang/StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder; 1641 1 341 0 -1 -ciMethod java/lang/StringBuilder append (I)Ljava/lang/StringBuilder; 0 0 2 0 -1 -ciMethod java/lang/StringBuilder toString ()Ljava/lang/String; 921 1 174 0 -1 -ciMethodData java/lang/Object ()V 2 21822 orig 264 8 177 236 96 0 0 0 0 104 4 142 21 0 0 0 0 32 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 241 153 2 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0 -ciMethodData java/lang/StringBuilder ()V 1 162 orig 264 8 177 236 96 0 0 0 0 80 48 149 21 0 0 0 0 48 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112 0 0 0 145 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 3 0 0 0 0 0 data 2 0x30002 0x32 oops 0 -ciMethodData java/lang/AbstractStringBuilder (I)V 1 216 orig 264 8 177 236 96 0 0 0 0 120 246 148 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 193 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 2 0x10002 0x58 oops 0 -ciMethodData java/lang/StringBuilder append (I)Ljava/lang/StringBuilder; 1 2 orig 264 8 177 236 96 0 0 0 0 216 55 149 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x2 oops 0 -ciMethodData java/lang/AbstractStringBuilder append (I)Ljava/lang/AbstractStringBuilder; 1 2 orig 264 8 177 236 96 0 0 0 0 72 9 149 21 0 0 0 0 24 2 0 0 152 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 200 0 0 0 255 255 255 255 7 0 3 0 0 0 0 0 data 25 0x30007 0x2 0x50 0x0 0x90005 0x0 0x0 0x0 0x0 0x0 0x100007 0x2 0x48 0x0 0x150002 0x0 0x1a0003 0x0 0x28 0x1e0002 0x2 0x2b0002 0x2 0x340002 0x2 oops 0 -ciMethodData java/lang/StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder; 1 341 orig 264 8 177 236 96 0 0 0 0 72 51 149 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 205 0 0 0 65 4 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x88 oops 0 -ciMethodData java/lang/AbstractStringBuilder append (Ljava/lang/String;)Ljava/lang/AbstractStringBuilder; 1 407 orig 264 8 177 236 96 0 0 0 0 24 1 149 21 0 0 0 0 240 1 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 220 0 0 0 217 5 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 9 0 2 0 0 0 160 0 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 20 0x10007 0xbb 0x30 0x0 0x50002 0x0 0xa0005 0x80 0x22c9ce0 0x3b 0x0 0x0 0x150002 0xbb 0x230005 0x80 0x22c9ce0 0x3b 0x0 0x0 oops 2 8 java/lang/String 16 java/lang/String -ciMethodData java/lang/StringBuilder toString ()Ljava/lang/String; 1 174 orig 264 8 177 236 96 0 0 0 0 104 70 149 21 0 0 0 0 48 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115 0 0 0 217 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 13 0 0 0 0 0 data 2 0xd0002 0x3b oops 0 -ciMethodData java/lang/String ([CII)V 1 647 orig 264 8 177 236 96 0 0 0 0 120 48 142 21 0 0 0 0 80 2 0 0 208 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 1 0 0 145 8 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 14 0 2 0 0 0 240 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 30 0x10002 0x112 0x50007 0x112 0x30 0x0 0xd0002 0x0 0x120007 0x112 0x70 0x0 0x160007 0x0 0x30 0x0 0x1e0002 0x0 0x250007 0x0 0x20 0x0 0x370007 0x112 0x30 0x0 0x410002 0x0 0x4b0002 0x112 oops 0 -ciMethod java/io/DataInput readFully ([BII)V 0 0 1 0 -1 -ciMethod java/io/DataInput readUnsignedShort ()I 0 0 1 0 -1 -ciMethod java/io/DataInputStream readFully ([BII)V 1009 1009 126 0 -1 -ciMethod java/io/DataInputStream readUnsignedShort ()I 1009 1 126 0 -1 -ciMethod java/io/DataInputStream readUTF (Ljava/io/DataInput;)Ljava/lang/String; 1009 16385 126 0 -1 -ciMethodData java/io/DataInputStream readUTF (Ljava/io/DataInput;)Ljava/lang/String; 1 2048 orig 264 8 177 236 96 0 0 0 0 80 100 181 21 0 0 0 0 40 7 0 0 112 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 224 5 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 188 0x10005 0x0 0x0 0x0 0x0 0x0 0xc0004 0x0 0x0 0x0 0x0 0x0 0xf0007 0x0 0x88 0x0 0x130004 0x0 0x0 0x0 0x0 0x0 0x1f0007 0x0 0x20 0x0 0x420003 0x0 0x18 0x570005 0x0 0x0 0x0 0x0 0x0 0x5f0007 0x0 0x70 0x0 0x700007 0x0 0x38 0x0 0x730003 0x0 0x30 0x830003 0x0 0xffffffffffffffa8 0x890007 0x0 0x448 0x0 0x9a0008 0x20 0x0 0x378 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x110 0x0 0x378 0x0 0x378 0x0 0x378 0x0 0x378 0x0 0x128 0x0 0x128 0x0 0x240 0xf10003 0x0 0xfffffffffffffed0 0xfa0007 0x0 0x30 0x0 0x1030002 0x0 0x1180007 0x0 0xd0 0x0 0x1230002 0x0 0x1280005 0x0 0x0 0x0 0x0 0x0 0x12d0005 0x0 0x0 0x0 0x0 0x0 0x1300005 0x0 0x0 0x0 0x0 0x0 0x1330002 0x0 0x14d0003 0x0 0xfffffffffffffdb8 0x1560007 0x0 0x30 0x0 0x15f0002 0x0 0x17c0007 0x0 0x40 0x0 0x1880007 0x0 0xd0 0x0 0x1930002 0x0 0x1980005 0x0 0x0 0x0 0x0 0x0 0x19f0005 0x0 0x0 0x0 0x0 0x0 0x1a20005 0x0 0x0 0x0 0x0 0x0 0x1a50002 0x0 0x1ca0003 0x0 0xfffffffffffffc80 0x1d50002 0x0 0x1da0005 0x0 0x0 0x0 0x0 0x0 0x1df0005 0x0 0x0 0x0 0x0 0x0 0x1e20005 0x0 0x0 0x0 0x0 0x0 0x1e50002 0x0 0x1f10002 0x0 oops 0 -ciMethodData java/io/DataInputStream readUnsignedShort ()I 1 126 orig 264 8 177 236 96 0 0 0 0 232 91 181 21 0 0 0 0 216 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 126 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 144 0 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 18 0x40005 0x0 0x0 0x0 0x0 0x0 0xc0005 0x0 0x0 0x0 0x0 0x0 0x130007 0x0 0x30 0x0 0x1a0002 0x0 oops 0 -ciMethodData java/io/DataInputStream readFully ([BII)V 1 126 orig 264 8 177 236 96 0 0 0 0 200 87 181 21 0 0 0 0 40 2 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 126 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 200 0 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 25 0x10007 0x0 0x30 0x0 0x80002 0x0 0x120007 0x0 0x98 0x0 0x220005 0x0 0x0 0x0 0x0 0x0 0x290007 0x0 0x30 0x0 0x300002 0x0 0x3b0003 0x0 0xffffffffffffff80 oops 0 -instanceKlass java/io/DataInput -instanceKlass sun/util/calendar/ZoneInfoFile$1 -instanceKlass sun/util/calendar/ZoneInfoFile -instanceKlass sun/util/calendar/CalendarSystem -instanceKlass java/util/TimeZone -instanceKlass java/util/Locale$1 -instanceKlass java/text/AttributedCharacterIterator$Attribute -instanceKlass java/text/Format -instanceKlass org/keldagrim/game/system/SystemLogger -instanceKlass org/keldagrim/tools/TimeStamp -instanceKlass java/util/concurrent/Executors$DefaultThreadFactory -instanceKlass java/util/concurrent/ThreadFactory -instanceKlass java/util/concurrent/LinkedBlockingQueue$Node -instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject -instanceKlass java/util/concurrent/locks/Condition -instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node -instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer -instanceKlass java/util/concurrent/BlockingQueue -instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy -instanceKlass java/util/concurrent/RejectedExecutionHandler -instanceKlass java/util/concurrent/AbstractExecutorService -instanceKlass java/util/concurrent/ExecutorService -instanceKlass java/util/concurrent/Executors -instanceKlass java/util/concurrent/ConcurrentLinkedQueue$Node -instanceKlass java/util/Queue -instanceKlass org/keldagrim/net/packet/Context -instanceKlass org/keldagrim/game/world/update/UpdateSequence -instanceKlass java/util/concurrent/Executor -instanceKlass org/keldagrim/worker/MajorUpdateWorker -instanceKlass org/keldagrim/game/world/GameWorld -instanceKlass java/util/Properties$LineReader -instanceKlass org/keldagrim/game/world/GameSettings -instanceKlass java/lang/Void -instanceKlass java/lang/Class$MethodArray -instanceKlass sun/launcher/LauncherHelper$FXHelper -instanceKlass org/keldagrim/App -instanceKlass java/io/FilePermission$1 -instanceKlass sun/net/www/MessageHeader -instanceKlass java/net/URLConnection -instanceKlass java/security/PermissionCollection -instanceKlass sun/nio/ch/DirectBuffer -instanceKlass sun/misc/PerfCounter$CoreCounters -instanceKlass sun/misc/Perf -instanceKlass sun/misc/Perf$GetPerfAction -instanceKlass sun/misc/PerfCounter -instanceKlass sun/nio/ByteBuffered -instanceKlass java/lang/Package -instanceKlass sun/misc/Resource -instanceKlass sun/nio/cs/ThreadLocalCoders$Cache -instanceKlass sun/nio/cs/ThreadLocalCoders -instanceKlass java/util/zip/ZipFile$1 -instanceKlass sun/misc/JavaUtilZipFileAccess -instanceKlass java/util/zip/ZipFile -instanceKlass java/util/zip/ZipConstants -instanceKlass sun/misc/URLClassPath$Loader -instanceKlass sun/misc/URLClassPath$3 -instanceKlass sun/net/util/URLUtil -instanceKlass java/net/URLClassLoader$1 -instanceKlass java/lang/StringCoding$StringDecoder -instanceKlass java/io/FileOutputStream$1 -instanceKlass java/lang/StringCoding$StringEncoder -instanceKlass java/lang/ThreadLocal$ThreadLocalMap -instanceKlass java/lang/StringCoding -instanceKlass sun/usagetracker/UsageTrackerClient$3 -instanceKlass java/util/TreeMap$Entry -instanceKlass java/lang/ProcessEnvironment$CheckedEntry -instanceKlass java/util/HashMap$HashIterator -instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1 -instanceKlass java/util/NavigableMap -instanceKlass java/util/SortedMap -instanceKlass java/util/Collections$UnmodifiableMap -instanceKlass java/lang/ProcessEnvironment$EntryComparator -instanceKlass java/lang/ProcessEnvironment$NameComparator -instanceKlass sun/usagetracker/UsageTrackerClient$2 -instanceKlass sun/usagetracker/UsageTrackerClient$4 -instanceKlass sun/usagetracker/UsageTrackerClient$1 -instanceKlass java/util/concurrent/atomic/AtomicBoolean -instanceKlass sun/usagetracker/UsageTrackerClient -instanceKlass sun/misc/PostVMInitHook -instanceKlass java/lang/invoke/MethodHandleStatics$1 -instanceKlass java/lang/invoke/MethodHandleStatics -instanceKlass java/lang/invoke/MemberName$Factory -instanceKlass java/lang/ClassValue$Version -instanceKlass java/lang/ClassValue$Identity -instanceKlass java/lang/ClassValue -instanceKlass java/lang/invoke/MethodHandleImpl$3 -instanceKlass java/lang/invoke/MethodHandleImpl$2 -instanceKlass java/util/function/Function -instanceKlass java/lang/invoke/MethodHandleImpl$1 -instanceKlass java/lang/invoke/MethodHandleImpl -instanceKlass java/lang/SystemClassLoaderAction -instanceKlass sun/misc/Launcher$AppClassLoader$1 -instanceKlass sun/misc/URLClassPath -instanceKlass java/security/Principal -instanceKlass java/security/ProtectionDomain$Key -instanceKlass java/security/ProtectionDomain$2 -instanceKlass sun/misc/JavaSecurityProtectionDomainAccess -instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl -instanceKlass sun/misc/JavaSecurityAccess -instanceKlass java/net/URLStreamHandler -instanceKlass java/net/Parts -instanceKlass java/util/BitSet -instanceKlass sun/net/www/ParseUtil -instanceKlass java/io/FileInputStream$1 -instanceKlass sun/util/locale/LocaleUtils -instanceKlass java/util/Locale$LocaleKey -instanceKlass sun/util/locale/BaseLocale$Key -instanceKlass sun/util/locale/BaseLocale -instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView -instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell -instanceKlass java/util/concurrent/ConcurrentHashMap$Node -instanceKlass java/util/concurrent/locks/ReentrantLock -instanceKlass java/util/concurrent/locks/Lock -instanceKlass java/util/concurrent/ConcurrentMap -instanceKlass sun/util/locale/LocaleObjectCache -instanceKlass java/util/Locale -instanceKlass java/lang/reflect/Array -instanceKlass java/nio/charset/CoderResult$Cache -instanceKlass java/nio/charset/CoderResult -instanceKlass java/nio/charset/CharsetDecoder -instanceKlass sun/nio/cs/ArrayDecoder -instanceKlass java/io/Reader -instanceKlass java/lang/Readable -instanceKlass sun/misc/MetaIndex -instanceKlass sun/misc/Launcher$ExtClassLoader$1 -instanceKlass java/util/StringTokenizer -instanceKlass java/net/URLClassLoader$7 -instanceKlass sun/misc/JavaNetAccess -instanceKlass java/lang/ClassLoader$ParallelLoaders -instanceKlass sun/security/util/Debug -instanceKlass sun/misc/Launcher$Factory -instanceKlass java/net/URLStreamHandlerFactory -instanceKlass java/lang/Compiler$1 -instanceKlass java/lang/Compiler -instanceKlass java/lang/System$2 -instanceKlass sun/misc/JavaLangAccess -instanceKlass sun/io/Win32ErrorMode -instanceKlass sun/misc/OSEnvironment -instanceKlass java/lang/CharacterData -instanceKlass java/lang/Integer$IntegerCache -instanceKlass sun/misc/NativeSignalHandler -instanceKlass sun/misc/Signal -instanceKlass java/lang/Terminator$1 -instanceKlass sun/misc/SignalHandler -instanceKlass java/lang/Terminator -instanceKlass java/lang/ClassLoader$NativeLibrary -instanceKlass java/io/ExpiringCache$Entry -instanceKlass java/lang/ClassLoader$3 -instanceKlass java/nio/file/Path -instanceKlass java/nio/file/Watchable -instanceKlass java/lang/Enum -instanceKlass java/io/ExpiringCache -instanceKlass java/io/FileSystem -instanceKlass java/io/DefaultFileSystem -instanceKlass sun/security/reward/GetPropertyAction -instanceKlass java/nio/Bits$1 -instanceKlass sun/misc/JavaNioAccess -instanceKlass java/nio/ByteOrder -instanceKlass java/nio/Bits -instanceKlass java/nio/charset/CodingErrorAction -instanceKlass java/nio/charset/CharsetEncoder -instanceKlass sun/nio/cs/ArrayEncoder -instanceKlass java/io/Writer -instanceKlass sun/reflect/ReflectionFactory$1 -instanceKlass java/lang/Class$1 -instanceKlass sun/nio/cs/SingleByte -instanceKlass sun/nio/cs/HistoricallyNamedCharset -instanceKlass java/util/Arrays -instanceKlass java/lang/ThreadLocal -instanceKlass java/nio/charset/spi/CharsetProvider -instanceKlass java/nio/charset/Charset -instanceKlass sun/reflect/misc/ReflectUtil -instanceKlass java/lang/reflect/ReflectAccess -instanceKlass sun/reflect/LangReflectAccess -instanceKlass java/lang/reflect/Modifier -instanceKlass sun/reflect/annotation/AnnotationType -instanceKlass java/lang/Class$AnnotationData -instanceKlass sun/reflect/generics/repository/AbstractRepository -instanceKlass java/lang/Class$Atomic -instanceKlass java/lang/Class$ReflectionData -instanceKlass java/lang/Class$3 -instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1 -instanceKlass java/security/PrivilegedExceptionAction -instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater -instanceKlass java/io/OutputStream -instanceKlass java/io/Flushable -instanceKlass java/io/FileDescriptor$1 -instanceKlass sun/misc/JavaIOFileDescriptorAccess -instanceKlass java/io/FileDescriptor -instanceKlass sun/misc/Version -instanceKlass java/lang/Runtime -instanceKlass java/util/Hashtable$Enumerator -instanceKlass java/util/Iterator -instanceKlass java/util/Enumeration -instanceKlass java/util/Objects -instanceKlass java/util/Collections$SynchronizedCollection -instanceKlass java/lang/Math -instanceKlass java/util/Hashtable$Entry -instanceKlass sun/misc/VM -instanceKlass java/util/HashMap$Node -instanceKlass java/util/Map$Entry -instanceKlass sun/reflect/Reflection -instanceKlass sun/misc/SharedSecrets -instanceKlass java/lang/ref/Reference$1 -instanceKlass sun/misc/JavaLangRefAccess -instanceKlass java/lang/ref/ReferenceQueue$Lock -instanceKlass java/lang/ref/ReferenceQueue -instanceKlass java/util/Collections$UnmodifiableCollection -instanceKlass java/util/AbstractMap -instanceKlass java/util/Set -instanceKlass java/util/Collections -instanceKlass java/lang/ref/Reference$Lock -instanceKlass sun/reflect/ReflectionFactory -instanceKlass java/util/AbstractCollection -instanceKlass java/util/RandomAccess -instanceKlass java/util/List -instanceKlass java/util/Collection -instanceKlass java/lang/Iterable -instanceKlass java/security/cert/Certificate -instanceKlass sun/reflect/ReflectionFactory$GetReflectionFactoryAction -instanceKlass java/security/PrivilegedAction -instanceKlass java/security/AccessController -instanceKlass java/security/Permission -instanceKlass java/security/Guard -instanceKlass java/lang/String$CaseInsensitiveComparator -instanceKlass java/util/Comparator -instanceKlass java/io/ObjectStreamField -instanceKlass java/lang/Number -instanceKlass java/lang/Character -instanceKlass java/lang/Boolean -instanceKlass java/nio/Buffer -instanceKlass java/lang/StackTraceElement -instanceKlass java/security/CodeSource -instanceKlass sun/misc/Launcher -instanceKlass java/util/jar/Manifest -instanceKlass java/net/URL -instanceKlass java/io/File -instanceKlass java/io/InputStream -instanceKlass java/io/Closeable -instanceKlass java/lang/AutoCloseable -instanceKlass sun/misc/Unsafe -instanceKlass java/lang/AbstractStringBuilder -instanceKlass java/lang/Appendable -instanceKlass java/lang/invoke/CallSite -instanceKlass java/lang/invoke/MethodType -instanceKlass java/lang/invoke/LambdaForm -instanceKlass java/lang/invoke/MethodHandleNatives -instanceKlass java/lang/invoke/MemberName -instanceKlass java/lang/invoke/MethodHandle -instanceKlass sun/reflect/CallerSensitive -instanceKlass java/lang/annotation/Annotation -instanceKlass sun/reflect/FieldAccessor -instanceKlass sun/reflect/ConstantPool -instanceKlass sun/reflect/ConstructorAccessor -instanceKlass sun/reflect/MethodAccessor -instanceKlass sun/reflect/MagicAccessorImpl -instanceKlass java/lang/reflect/Parameter -instanceKlass java/lang/reflect/Member -instanceKlass java/lang/reflect/AccessibleObject -instanceKlass java/util/Dictionary -instanceKlass java/util/Map -instanceKlass java/lang/ThreadGroup -instanceKlass java/lang/Thread$UncaughtExceptionHandler -instanceKlass java/lang/Thread -instanceKlass java/lang/Runnable -instanceKlass java/lang/ref/Reference -instanceKlass java/security/AccessControlContext -instanceKlass java/security/ProtectionDomain -instanceKlass java/lang/SecurityManager -instanceKlass java/lang/Throwable -instanceKlass java/lang/System -instanceKlass java/lang/ClassLoader -instanceKlass java/lang/Cloneable -instanceKlass java/lang/Class -instanceKlass java/lang/reflect/Type -instanceKlass java/lang/reflect/GenericDeclaration -instanceKlass java/lang/reflect/AnnotatedElement -instanceKlass java/lang/String -instanceKlass java/lang/CharSequence -instanceKlass java/lang/Comparable -instanceKlass java/io/Serializable -ciInstanceKlass java/lang/Object 1 1 75 3 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 100 100 1 1 1 12 12 12 12 12 12 12 12 12 12 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass java/io/Serializable 1 0 5 1 1 100 100 -ciInstanceKlass java/lang/String 1 1 537 3 3 3 3 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 100 100 7 100 100 100 100 100 100 100 100 100 7 100 7 7 100 7 100 100 7 100 7 100 100 100 7 7 100 100 100 7 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 -staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; -staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator -ciInstanceKlass java/lang/Class 1 1 1187 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 8 8 8 8 8 100 100 100 100 100 100 100 7 100 7 100 7 100 100 7 100 7 7 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 100 100 7 100 100 7 7 100 100 100 7 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 7 7 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 1 1 1 -staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; -ciInstanceKlass java/lang/Cloneable 1 0 5 1 1 100 100 -instanceKlass sun/reflect/DelegatingClassLoader -instanceKlass java/security/SecureClassLoader -ciInstanceKlass java/lang/ClassLoader 1 1 839 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 7 100 100 100 100 7 100 100 100 7 7 7 100 7 100 100 100 100 7 7 100 100 7 100 7 7 100 100 100 100 7 100 100 7 7 100 7 7 100 7 100 7 7 100 100 7 7 7 7 100 7 7 100 100 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 1 1 -staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate; -ciInstanceKlass java/lang/System 1 1 366 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 7 100 7 100 100 100 100 100 100 7 7 100 100 7 100 100 7 7 7 7 100 100 100 7 100 100 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 -staticfield java/lang/System in Ljava/io/InputStream; java/io/BufferedInputStream -staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream -staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream -instanceKlass java/lang/Exception -instanceKlass java/lang/Error -ciInstanceKlass java/lang/Throwable 1 1 324 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 7 100 100 100 100 7 7 100 100 100 100 100 100 100 100 100 7 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 1 1 1 -staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; -staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$UnmodifiableRandomAccessList -staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable; -staticfield java/lang/Throwable $assertionsDisabled Z 1 -instanceKlass java/lang/VirtualMachineError -instanceKlass java/lang/LinkageError -instanceKlass java/lang/ThreadDeath -ciInstanceKlass java/lang/Error 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10 -ciInstanceKlass java/lang/ThreadDeath 0 0 15 1 1 1 1 1 1 1 1 5 0 100 100 12 10 -instanceKlass java/io/IOException -instanceKlass java/lang/InterruptedException -instanceKlass java/lang/ReflectiveOperationException -instanceKlass java/lang/RuntimeException -ciInstanceKlass java/lang/Exception 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10 -instanceKlass java/lang/IllegalArgumentException -instanceKlass java/lang/ArithmeticException -instanceKlass java/lang/NullPointerException -instanceKlass java/lang/IllegalMonitorStateException -instanceKlass java/lang/ArrayStoreException -instanceKlass java/lang/ClassCastException -ciInstanceKlass java/lang/RuntimeException 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 100 1 1 12 12 12 12 12 10 10 10 10 10 -ciInstanceKlass java/lang/SecurityManager 0 0 372 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass java/security/ProtectionDomain 1 1 267 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 100 100 100 100 100 100 100 7 7 100 7 7 100 7 7 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 -staticfield java/security/ProtectionDomain debug Lsun/security/util/Debug; null -ciInstanceKlass java/security/AccessControlContext 1 1 302 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 7 100 100 7 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 -instanceKlass java/net/URLClassLoader -ciInstanceKlass java/security/SecureClassLoader 1 1 127 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 7 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield java/security/SecureClassLoader debug Lsun/security/util/Debug; null -instanceKlass java/lang/ClassNotFoundException -ciInstanceKlass java/lang/ReflectiveOperationException 1 1 24 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 12 10 10 10 10 -ciInstanceKlass java/lang/ClassNotFoundException 1 1 29 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 1 1 1 12 12 12 9 10 10 -instanceKlass java/lang/IncompatibleClassChangeError -instanceKlass java/lang/BootstrapMethodError -instanceKlass java/lang/NoClassDefFoundError -ciInstanceKlass java/lang/LinkageError 1 1 21 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 10 10 10 -ciInstanceKlass java/lang/NoClassDefFoundError 0 0 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/ClassCastException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/ArrayStoreException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -instanceKlass java/lang/StackOverflowError -instanceKlass java/lang/OutOfMemoryError -ciInstanceKlass java/lang/VirtualMachineError 1 1 24 1 1 1 1 1 1 1 1 1 1 5 0 100 100 1 12 12 12 12 10 10 10 10 -ciInstanceKlass java/lang/OutOfMemoryError 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/StackOverflowError 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -instanceKlass java/lang/ref/PhantomReference -instanceKlass java/lang/ref/FinalReference -instanceKlass java/lang/ref/WeakReference -instanceKlass java/lang/ref/SoftReference -ciInstanceKlass java/lang/ref/Reference 1 1 131 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 7 7 100 7 7 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 -instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry -ciInstanceKlass java/lang/ref/SoftReference 1 1 32 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 1 1 1 1 12 12 12 12 12 9 9 10 10 10 -instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry -instanceKlass java/lang/ClassValue$Entry -instanceKlass java/util/WeakHashMap$Entry -ciInstanceKlass java/lang/ref/WeakReference 1 1 17 1 1 1 1 1 1 7 100 1 1 1 1 12 12 10 10 -instanceKlass java/lang/ref/Finalizer -ciInstanceKlass java/lang/ref/FinalReference 1 1 13 1 1 1 1 1 100 7 1 1 1 12 10 -instanceKlass sun/misc/Cleaner -ciInstanceKlass java/lang/ref/PhantomReference 1 1 16 1 1 1 1 1 1 1 1 100 100 1 1 1 12 10 -ciInstanceKlass sun/misc/Cleaner 1 1 71 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 11 -staticfield sun/misc/Cleaner dummyQueue Ljava/lang/ref/ReferenceQueue; java/lang/ref/ReferenceQueue -ciInstanceKlass java/lang/ref/Finalizer 1 1 145 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 7 100 7 7 100 100 100 7 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object -instanceKlass java/lang/ref/Finalizer$FinalizerThread -instanceKlass java/lang/ref/Reference$ReferenceHandler -ciInstanceKlass java/lang/Thread 1 1 543 3 3 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 100 100 100 100 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 1 1 1 -staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; -staticfield java/lang/Thread SUBCLASS_IMPLEMENTATION_PERMISSION Ljava/lang/RuntimePermission; java/lang/RuntimePermission -ciInstanceKlass java/lang/ThreadGroup 1 1 265 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 100 100 7 7 100 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -instanceKlass java/util/Hashtable -ciInstanceKlass java/util/Dictionary 1 1 28 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 1 1 1 1 1 1 12 10 -instanceKlass java/util/Properties -ciInstanceKlass java/util/Hashtable 1 1 394 3 3 4 4 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 7 100 100 7 100 7 100 100 100 7 100 7 7 100 7 7 7 100 100 7 7 7 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 -ciInstanceKlass java/util/Properties 1 1 260 3 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 -staticfield java/util/Properties hexDigit [C 16 -instanceKlass java/lang/reflect/Executable -instanceKlass java/lang/reflect/Field -ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 141 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 7 7 100 7 100 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield java/lang/reflect/AccessibleObject ACCESS_PERMISSION Ljava/security/Permission; java/lang/reflect/ReflectPermission -staticfield java/lang/reflect/AccessibleObject reflectionFactory Lsun/reflect/ReflectionFactory; sun/reflect/ReflectionFactory -ciInstanceKlass java/lang/reflect/Field 1 1 359 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 -ciInstanceKlass java/lang/reflect/Parameter 0 0 207 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 -instanceKlass java/lang/reflect/Constructor -instanceKlass java/lang/reflect/Method -ciInstanceKlass java/lang/reflect/Executable 1 1 375 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 1 -ciInstanceKlass java/lang/reflect/Method 1 1 343 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 -ciInstanceKlass java/lang/reflect/Constructor 1 1 327 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 100 100 100 7 7 100 100 100 100 100 7 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 -instanceKlass sun/reflect/FieldAccessorImpl -instanceKlass sun/reflect/ConstructorAccessorImpl -instanceKlass sun/reflect/MethodAccessorImpl -ciInstanceKlass sun/reflect/MagicAccessorImpl 1 1 10 1 1 1 1 1 7 100 12 10 -ciInstanceKlass sun/reflect/MethodAccessorImpl 0 0 19 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 12 10 -instanceKlass sun/reflect/DelegatingConstructorAccessorImpl -instanceKlass sun/reflect/NativeConstructorAccessorImpl -ciInstanceKlass sun/reflect/ConstructorAccessorImpl 1 1 21 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 12 10 -ciInstanceKlass sun/reflect/DelegatingClassLoader 0 0 10 1 1 1 1 100 100 1 12 10 -ciInstanceKlass sun/reflect/ConstantPool 0 0 103 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -instanceKlass sun/reflect/UnsafeFieldAccessorImpl -ciInstanceKlass sun/reflect/FieldAccessorImpl 0 0 53 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 -instanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl -ciInstanceKlass sun/reflect/UnsafeFieldAccessorImpl 0 0 226 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl 0 0 35 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 12 12 12 12 12 9 9 10 10 10 -ciInstanceKlass sun/reflect/CallerSensitive 0 0 15 1 1 1 1 1 1 1 100 100 100 1 1 1 1 -instanceKlass java/lang/invoke/DirectMethodHandle -ciInstanceKlass java/lang/invoke/MethodHandle 1 1 435 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1 -staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20 -staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1 -ciInstanceKlass java/lang/invoke/DirectMethodHandle 0 0 691 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1 1 1 1 1 -ciInstanceKlass java/lang/invoke/MemberName 1 1 641 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 100 100 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 -staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1 -ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 424 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 -staticfield java/lang/invoke/MethodHandleNatives COUNT_GWT Z 1 -staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1 -ciInstanceKlass java/lang/invoke/LambdaForm 0 0 964 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 8 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 1 1 -ciInstanceKlass java/lang/invoke/MethodType 0 0 588 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 1 -ciInstanceKlass java/lang/BootstrapMethodError 0 0 35 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 1 1 12 12 12 12 12 10 10 10 10 10 -instanceKlass java/lang/invoke/VolatileCallSite -instanceKlass java/lang/invoke/MutableCallSite -instanceKlass java/lang/invoke/ConstantCallSite -ciInstanceKlass java/lang/invoke/CallSite 0 0 308 8 8 8 8 8 8 8 8 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -ciInstanceKlass java/lang/invoke/ConstantCallSite 0 0 39 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 12 12 12 12 12 12 9 9 10 10 10 10 10 -ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 54 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 -ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 30 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 12 12 12 12 12 12 10 10 10 10 10 10 -instanceKlass java/lang/StringBuilder -instanceKlass java/lang/StringBuffer -ciInstanceKlass java/lang/AbstractStringBuilder 1 1 309 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 100 100 100 100 7 7 7 100 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 -ciInstanceKlass java/lang/StringBuffer 1 1 369 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 7 7 100 100 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1 -staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; -ciInstanceKlass java/lang/StringBuilder 1 1 323 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 -ciInstanceKlass sun/misc/Unsafe 1 1 386 8 8 7 7 7 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 7 100 100 7 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield sun/misc/Unsafe theUnsafe Lsun/misc/Unsafe; sun/misc/Unsafe -staticfield sun/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16 -staticfield sun/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1 -staticfield sun/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1 -staticfield sun/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2 -staticfield sun/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2 -staticfield sun/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4 -staticfield sun/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8 -staticfield sun/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4 -staticfield sun/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8 -staticfield sun/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4 -staticfield sun/misc/Unsafe ADDRESS_SIZE I 8 -instanceKlass java/io/FilterInputStream -instanceKlass java/io/FileInputStream -instanceKlass java/io/ByteArrayInputStream -ciInstanceKlass java/io/InputStream 1 1 58 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 5 0 100 100 100 100 100 100 100 7 12 12 12 12 12 10 10 10 10 10 10 10 -ciInstanceKlass java/io/ByteArrayInputStream 1 1 59 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 100 1 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 -ciInstanceKlass java/io/File 1 1 575 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 100 7 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 100 100 7 7 7 100 100 100 100 100 100 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 -staticfield java/io/File fs Ljava/io/FileSystem; java/io/WinNTFileSystem -staticfield java/io/File separatorChar C 92 -staticfield java/io/File separator Ljava/lang/String; "\" -staticfield java/io/File pathSeparatorChar C 59 -staticfield java/io/File pathSeparator Ljava/lang/String; ";" -staticfield java/io/File PATH_OFFSET J 16 -staticfield java/io/File PREFIX_LENGTH_OFFSET J 12 -staticfield java/io/File UNSAFE Lsun/misc/Unsafe; sun/misc/Unsafe -staticfield java/io/File $assertionsDisabled Z 1 -instanceKlass sun/misc/Launcher$ExtClassLoader -instanceKlass sun/misc/Launcher$AppClassLoader -ciInstanceKlass java/net/URLClassLoader 1 1 519 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 100 100 7 7 7 100 100 7 100 100 100 7 7 7 100 100 100 7 7 7 100 100 100 100 100 7 7 100 100 100 7 7 7 7 100 7 100 100 100 7 100 100 100 100 7 7 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 -ciInstanceKlass java/net/URL 1 1 547 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 7 100 100 7 100 100 100 100 100 7 7 100 7 7 100 100 100 100 7 100 100 100 100 7 100 7 100 100 7 7 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField; -ciInstanceKlass java/util/jar/Manifest 1 1 227 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1 -ciInstanceKlass sun/misc/Launcher 1 1 215 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 7 100 7 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1 -ciInstanceKlass sun/misc/Launcher$AppClassLoader 1 1 198 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 7 100 7 100 7 7 100 100 7 100 7 100 7 100 7 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -staticfield sun/misc/Launcher$AppClassLoader $assertionsDisabled Z 1 -ciInstanceKlass sun/misc/Launcher$ExtClassLoader 1 1 206 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 7 7 7 7 7 100 7 100 100 100 7 7 7 7 7 7 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 -ciInstanceKlass java/security/CodeSource 1 1 319 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 7 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 -ciInstanceKlass java/lang/StackTraceElement 0 0 95 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 -instanceKlass java/nio/LongBuffer -instanceKlass java/nio/CharBuffer -instanceKlass java/nio/ByteBuffer -ciInstanceKlass java/nio/Buffer 1 1 100 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 100 7 100 7 100 100 100 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 -ciInstanceKlass java/lang/Boolean 1 1 107 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 7 100 100 100 7 100 7 7 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 -staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean -staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean -staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Character 1 1 456 3 3 3 3 3 3 3 3 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 5 0 5 0 100 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 1 1 -staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class -staticfield java/lang/Character $assertionsDisabled Z 1 -instanceKlass java/util/concurrent/atomic/AtomicLong -instanceKlass java/util/concurrent/atomic/AtomicInteger -instanceKlass java/lang/Long -instanceKlass java/lang/Integer -instanceKlass java/lang/Short -instanceKlass java/lang/Byte -instanceKlass java/lang/Double -instanceKlass java/lang/Float -ciInstanceKlass java/lang/Number 1 1 31 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 12 12 10 10 -ciInstanceKlass java/lang/Float 1 1 166 3 3 3 4 4 4 4 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 4 4 5 0 7 100 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Double 1 1 220 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 5 0 5 0 5 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 7 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Byte 1 1 150 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Short 1 1 156 3 3 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 100 100 100 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/Integer 1 1 306 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 100 7 7 100 100 7 7 100 100 100 7 100 100 100 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class -staticfield java/lang/Integer digits [C 36 -staticfield java/lang/Integer DigitTens [C 100 -staticfield java/lang/Integer DigitOnes [C 100 -staticfield java/lang/Integer sizeTable [I 10 -ciInstanceKlass java/lang/Long 1 1 353 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 100 100 7 100 100 7 7 100 7 100 100 100 100 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 -staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class -ciInstanceKlass java/lang/NullPointerException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/lang/ArithmeticException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 -ciInstanceKlass java/io/DataInput 1 0 34 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 -ciInstanceKlass java/io/DataInputStream 1 1 154 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 7 100 7 100 100 100 100 100 7 100 100 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 -compile java/io/DataInputStream readUTF (Ljava/io/DataInput;)Ljava/lang/String; -1 3 diff --git a/Server/runServer.sh b/Server/runServer.sh index c3f3a3d4d..19796f0e4 100755 --- a/Server/runServer.sh +++ b/Server/runServer.sh @@ -1,3 +1,5 @@ rm -rf org cp -r ../CompiledServer/production/09Scape/org . -java -server -cp ".:./bin;.:./lib/*" org.keldagrim.Server false true false true true +rm -rf plugin/ +cp -r ../CompiledServer/production/09Scape/plugin/ . +java -server -cp ".:./bin;.:./data/libs/*" org.crandor.Server diff --git a/Server/server.properties b/Server/server.properties index a5d7e3d71..a86078484 100644 --- a/Server/server.properties +++ b/Server/server.properties @@ -2,7 +2,7 @@ name=Crandor beta=false sql=true devMode=true -gui=true +gui=false gameType=economy worldId=1 country=0 @@ -11,4 +11,4 @@ members=true pvp=false quickChat=true lootshare=true -msip=127.0.0.1 \ No newline at end of file +msip=127.0.0.1 diff --git a/Server/server.sql b/Server/server.sql index 5bde75e99..4d14184e0 100644 --- a/Server/server.sql +++ b/Server/server.sql @@ -22,6 +22,16 @@ SET time_zone = "+00:00"; -- -------------------------------------------------------- +-- +-- Table structure for table `global_events` +-- + +CREATE TABLE `global_events` ( + `eventName` varchar(128) NOT NULL, + `eventTime` varchar(128) NOT NULL, + `worldId` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + -- -- Table structure for table `ammo_configs` -- @@ -23619,6 +23629,12 @@ INSERT INTO `staff_accounts` (`username`, `admin`, `serials`, `macs`) VALUES -- Indexes for dumped tables -- +-- +-- Indexes for table `global_events` +-- +ALTER TABLE `global_events` + ADD UNIQUE KEY `world_event` (`eventName`,`worldId`); + -- -- Indexes for table `ammo_configs` -- diff --git a/Server/src.rar b/Server/src.rar deleted file mode 100644 index 367e92ad6..000000000 Binary files a/Server/src.rar and /dev/null differ diff --git a/Server/src/META-INF/MANIFEST.MF b/Server/src/META-INF/MANIFEST.MF new file mode 100644 index 000000000..d7812e5ab --- /dev/null +++ b/Server/src/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.Client + diff --git a/Server/src/METAs/META-INF/MANIFEST.MF b/Server/src/METAs/META-INF/MANIFEST.MF new file mode 100644 index 000000000..683bd2ea1 --- /dev/null +++ b/Server/src/METAs/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: org.runite.GameLaunch + diff --git a/Server/src/org/crandor/Server.java b/Server/src/org/crandor/Server.java index ebde3ff86..ee52d19dd 100644 --- a/Server/src/org/crandor/Server.java +++ b/Server/src/org/crandor/Server.java @@ -11,6 +11,7 @@ import org.crandor.net.amsc.WorldCommunicator; import org.crandor.tools.TimeStamp; import org.crandor.tools.backup.AutoBackup; +import java.awt.*; import java.net.BindException; /** @@ -44,7 +45,11 @@ public final class Server { GameWorld.setSettings(GameSettings.parse(args)); } if (GameWorld.getSettings().isGui()) { - ConsoleFrame.getInstance().init(); + try { + ConsoleFrame.getInstance().init(); + } catch (Exception e) { + System.out.println("X11 server missing - launching server with no GUI!"); + } } startTime = System.currentTimeMillis(); final TimeStamp t = new TimeStamp(); diff --git a/Server/src/org/crandor/ServerConstants.java b/Server/src/org/crandor/ServerConstants.java index 5c0cc854d..237b12f6f 100644 --- a/Server/src/org/crandor/ServerConstants.java +++ b/Server/src/org/crandor/ServerConstants.java @@ -12,14 +12,6 @@ import org.crandor.tools.mysql.Database; */ public final class ServerConstants { - /** - * The administrators. - */ - public static final String[] ADMINISTRATORS = { - "ethan", - "austin", - }; - /** * The cache path. */ @@ -48,35 +40,119 @@ public final class ServerConstants { /** * The start location for a fresh account. */ - public static final Location START_LOCATION = Location.create(3088, 3491, 0); + public static final Location START_LOCATION = Location.create(3094, 3107, 0); /** * The main home teleport location. */ - public static final Location HOME_LOCATION = Location.create(3088, 3491, 0); + public static final Location HOME_LOCATION = Location.create(3222, 3218, 0); /** * The teleport destinations. */ - public static final Object[][] TELEPORT_DESTINATIONS = { { Location.create(2974, 4383, 2), "corp", "corporal", "corporeal" }, { Location.create(2659, 2649, 0), "pc", "pest control", "pest" }, { Location.create(3293, 3184, 0), "al kharid", "alkharid", "kharid" }, { Location.create(3222, 3217, 0), "lumbridge", "lumby" }, { Location.create(3110, 3168, 0), "wizard tower", "wizards tower", "tower", "wizards" }, { Location.create(3083, 3249, 0), "draynor", "draynor village" }, { Location.create(3019, 3244, 0), "port sarim", "sarim" }, { Location.create(2956, 3209, 0), "rimmington" }, { Location.create(2965, 3380, 0), "fally", "falador" }, { Location.create(2895, 3436, 0), "taverly" }, { Location.create(3080, 3423, 0), "barbarian village", "barb" }, { Location.create(3213, 3428, 0), "varrock" }, { Location.create(3164, 3485, 0), "grand exchange", "ge" }, { Location.create(2917, 3175, 0), "karamja" }, { Location.create(2450, 5165, 0), "tzhaar" }, { Location.create(2795, 3177, 0), "brimhaven" }, { Location.create(2849, 2961, 0), "shilo village", "shilo" }, { Location.create(2605, 3093, 0), "yanille" }, { Location.create(2663, 3305, 0), "ardougne", "ardy" }, { Location.create(2450, 3422, 0), "gnome stronghold", "gnome" }, { Location.create(2730, 3485, 0), "camelot", "cammy", "seers" }, { Location.create(2805, 3435, 0), "catherby" }, { Location.create(2659, 3657, 0), "rellekka" }, { Location.create(2890, 3676, 0), "trollheim" }, { Location.create(2914, 3746, 0), "godwars", "gwd", "god wars" }, { Location.create(3180, 3684, 0), "bounty hunter", "bh" }, { Location.create(3272, 3687, 0), "clan wars", "clw" }, { Location.create(3090, 3957, 0), "mage arena", "mage", "magearena", "arena" }, { Location.create(3069, 10257, 0), "king black dragon", "kbd" }, { Location.create(3359, 3416, 0), "digsite" }, { Location.create(3488, 3489, 0), "canifis" }, { Location.create(3428, 3526, 0), "slayer tower", "slayer" }, { Location.create(3502, 9483, 2), "kalphite queen", "kq", "kalphite hive", "kalphite" }, { Location.create(3233, 2913, 0), "pyramid" }, { Location.create(3419, 2917, 0), "nardah" }, { Location.create(3482, 3090, 0), "uzer" }, { Location.create(3358, 2970, 0), "pollnivneach", "poln" }, { Location.create(3305, 2788, 0), "sophanem" }, { Location.create(2898, 3544, 0), "burthorpe", "burthorp" }, { Location.create(3088, 3491, 0), "edge", "edgeville" }, { Location.create(3169, 3034, 0), "bedabin" }, { Location.create(3565, 3289, 0), "barrows" } }; + public static final Object[][] TELEPORT_DESTINATIONS = { + { Location.create(2974, 4383, 2), "corp", "corporal", "corporeal" }, + { Location.create(2659, 2649, 0), "pc", "pest control", "pest" }, + { Location.create(3293, 3184, 0), "al kharid", "alkharid", "kharid" }, + { Location.create(3222, 3217, 0), "lumbridge", "lumby" }, + { Location.create(3110, 3168, 0), "wizard tower", "wizards tower", "tower", "wizards" }, + { Location.create(3083, 3249, 0), "draynor", "draynor village" }, + { Location.create(3019, 3244, 0), "port sarim", "sarim" }, + { Location.create(2956, 3209, 0), "rimmington" }, + { Location.create(2965, 3380, 0), "fally", "falador" }, + { Location.create(2895, 3436, 0), "taverly" }, + { Location.create(3080, 3423, 0), "barbarian village", "barb" }, + { Location.create(3213, 3428, 0), "varrock" }, + { Location.create(3164, 3485, 0), "grand exchange", "ge" }, + { Location.create(2917, 3175, 0), "karamja" }, + { Location.create(2450, 5165, 0), "tzhaar" }, + { Location.create(2795, 3177, 0), "brimhaven" }, + { Location.create(2849, 2961, 0), "shilo village", "shilo" }, + { Location.create(2605, 3093, 0), "yanille" }, + { Location.create(2663, 3305, 0), "ardougne", "ardy" }, + { Location.create(2450, 3422, 0), "gnome stronghold", "gnome" }, + { Location.create(2730, 3485, 0), "camelot", "cammy", "seers" }, + { Location.create(2805, 3435, 0), "catherby" }, + { Location.create(2659, 3657, 0), "rellekka" }, + { Location.create(2890, 3676, 0), "trollheim" }, + { Location.create(2914, 3746, 0), "godwars", "gwd", "god wars" }, + { Location.create(3180, 3684, 0), "bounty hunter", "bh" }, + { Location.create(3272, 3687, 0), "clan wars", "clw" }, + { Location.create(3090, 3957, 0), "mage arena", "mage", "magearena", "arena" }, + { Location.create(3069, 10257, 0), "king black dragon", "kbd" }, + { Location.create(3359, 3416, 0), "digsite" }, + { Location.create(3488, 3489, 0), "canifis" }, + { Location.create(3428, 3526, 0), "slayer tower", "slayer" }, + { Location.create(3502, 9483, 2), "kalphite queen", "kq", "kalphite hive", "kalphite" }, + { Location.create(3233, 2913, 0), "pyramid" }, + { Location.create(3419, 2917, 0), "nardah" }, + { Location.create(3482, 3090, 0), "uzer" }, + { Location.create(3358, 2970, 0), "pollnivneach", "poln" }, + { Location.create(3305, 2788, 0), "sophanem" }, + { Location.create(2898, 3544, 0), "burthorpe", "burthorp" }, + { Location.create(3088, 3491, 0), "edge", "edgeville" }, + { Location.create(3169, 3034, 0), "bedabin" }, + { Location.create(3565, 3289, 0), "barrows" }, + }; /** * The teleport destinations, intended for Grandpa Jack. */ - public static final Object[][] TELEPORT_DESTINATIONS_DONATOR = { {Location.create(2914, 3746, 0), "godwars", "gwd", "god wars"}, { Location.create(2659, 2649, 0), "pc", "pest control", "pest" }, { Location.create(3293, 3184, 0), "al kharid", "alkharid", "kharid" }, { Location.create(3222, 3217, 0), "lumbridge", "lumby" }, { Location.create(3110, 3168, 0), "wizard tower", "wizards tower", "tower", "wizards" }, { Location.create(3083, 3249, 0), "draynor", "draynor village" }, { Location.create(3019, 3244, 0), "port sarim", "sarim" }, { Location.create(2956, 3209, 0), "rimmington" }, { Location.create(2965, 3380, 0), "fally", "falador" }, { Location.create(2895, 3436, 0), "taverly" }, { Location.create(3080, 3423, 0), "barbarian village", "barb" }, { Location.create(3213, 3428, 0), "varrock" }, { Location.create(3164, 3485, 0), "grand exchange", "ge" }, { Location.create(2917, 3175, 0), "karamja" }, { Location.create(2450, 5165, 0), "tzhaar" }, { Location.create(2795, 3177, 0), "brimhaven" }, { Location.create(2849, 2961, 0), "shilo village", "shilo" }, { Location.create(2605, 3093, 0), "yanille" }, { Location.create(2663, 3305, 0), "ardougne", "ardy" }, { Location.create(2450, 3422, 0), "gnome stronghold", "gnome" }, { Location.create(2730, 3485, 0), "camelot", "cammy", "seers" }, { Location.create(2805, 3435, 0), "catherby" }, { Location.create(2659, 3657, 0), "rellekka" }, { Location.create(2890, 3676, 0), "trollheim" }, { Location.create(3180, 3684, 0), "bounty hunter", "bh" }, { Location.create(3272, 3687, 0), "clan wars", "clw" }, { Location.create(3090, 3957, 0), "mage arena", "mage", "magearena", "arena" }, { Location.create(3359, 3416, 0), "digsite" }, { Location.create(3488, 3489, 0), "canifis" }, { Location.create(3428, 3526, 0), "slayer tower", "slayer" }, { Location.create(3233, 2913, 0), "pyramid" }, { Location.create(3419, 2917, 0), "nardah" }, { Location.create(3482, 3090, 0), "uzer" }, { Location.create(3358, 2970, 0), "pollnivneach", "poln" }, { Location.create(3305, 2788, 0), "sophanem" }, { Location.create(2898, 3544, 0), "burthorpe", "burthorp" }, { Location.create(3088, 3491, 0), "edge", "edgeville" }, { Location.create(3169, 3034, 0), "bedabin" }, { Location.create(3565, 3311, 0), "barrows" } }; + public static final Object[][] TELEPORT_DESTINATIONS_DONATOR = { + { Location.create(2914, 3746, 0), "godwars", "gwd", "god wars" }, + { Location.create(2659, 2649, 0), "pc", "pest control", "pest" }, + { Location.create(3293, 3184, 0), "al kharid", "alkharid", "kharid" }, + { Location.create(3222, 3217, 0), "lumbridge", "lumby" }, + { Location.create(3110, 3168, 0), "wizard tower", "wizards tower", "tower", "wizards" }, + { Location.create(3083, 3249, 0), "draynor", "draynor village" }, + { Location.create(3019, 3244, 0), "port sarim", "sarim" }, + { Location.create(2956, 3209, 0), "rimmington" }, + { Location.create(2965, 3380, 0), "fally", "falador" }, + { Location.create(2895, 3436, 0), "taverly" }, + { Location.create(3080, 3423, 0), "barbarian village", "barb" }, + { Location.create(3213, 3428, 0), "varrock" }, + { Location.create(3164, 3485, 0), "grand exchange", "ge" }, + { Location.create(2917, 3175, 0), "karamja" }, + { Location.create(2450, 5165, 0), "tzhaar" }, + { Location.create(2795, 3177, 0), "brimhaven" }, + { Location.create(2849, 2961, 0), "shilo village", "shilo" }, + { Location.create(2605, 3093, 0), "yanille" }, + { Location.create(2663, 3305, 0), "ardougne", "ardy" }, + { Location.create(2450, 3422, 0), "gnome stronghold", "gnome" }, + { Location.create(2730, 3485, 0), "camelot", "cammy", "seers" }, + { Location.create(2805, 3435, 0), "catherby" }, + { Location.create(2659, 3657, 0), "rellekka" }, + { Location.create(2890, 3676, 0), "trollheim" }, + { Location.create(3180, 3684, 0), "bounty hunter", "bh" }, + { Location.create(3272, 3687, 0), "clan wars", "clw" }, + { Location.create(3090, 3957, 0), "mage arena", "mage", "magearena", "arena" }, + { Location.create(3359, 3416, 0), "digsite" }, + { Location.create(3488, 3489, 0), "canifis" }, + { Location.create(3428, 3526, 0), "slayer tower", "slayer" }, + { Location.create(3233, 2913, 0), "pyramid" }, + { Location.create(3419, 2917, 0), "nardah" }, + { Location.create(3482, 3090, 0), "uzer" }, + { Location.create(3358, 2970, 0), "pollnivneach", "poln" }, + { Location.create(3305, 2788, 0), "sophanem" }, + { Location.create(2898, 3544, 0), "burthorpe", "burthorp" }, + { Location.create(3088, 3491, 0), "edge", "edgeville" }, + { Location.create(3169, 3034, 0), "bedabin" }, + { Location.create(3565, 3311, 0), "barrows" }, + }; /** * The string of donation messages displayed on an interface. */ - public static final String[] MESSAGES = new String[] {"Donations on Keldagrim are different than those elsewhere.", "Here we use a perk system.", "There are many different type of perks that can be bought to", "speed up efficiency, but nothing game breaking. By doing this", "we provide players with ways to support Keldagrim, in a manner" , "that doesn't ruin the economy or provide substantial advantages.", "If you would like to check out our perks please visit", "keldagrim.com/donate/." }; + public static final String[] MESSAGES = new String[] { "Welcome!" }; public static final String[] DATABASE_NAMES = { - "keldagr1_server", "keldagr1_global" + "server", + "global", }; - + public static final Database[] DATABASES = { - new Database((SQLManager.LOCAL ? "localhost" : "keldagrim.org"), (SQLManager.LOCAL ? "server" : DATABASE_NAMES[0]), (SQLManager.LOCAL ? "root" : "keldagr1_user"), (SQLManager.LOCAL ? "" : "2jf4wkz$")), - new Database((SQLManager.LOCAL ? "localhost" : "keldagrim.org"), (SQLManager.LOCAL ? "global" : DATABASE_NAMES[1]), (SQLManager.LOCAL ? "root" : "keldagr1_user"), (SQLManager.LOCAL ? "" : "2jf4wkz$")) + new Database(SQLManager.SQL_SERVER_ADDRESS, DATABASE_NAMES[0], (SQLManager.LOCAL ? "root" : "username"), (SQLManager.LOCAL ? "" : "password")), + new Database(SQLManager.SQL_SERVER_ADDRESS, DATABASE_NAMES[1], (SQLManager.LOCAL ? "root" : "username"), (SQLManager.LOCAL ? "" : "password")) }; /** diff --git a/Server/src/org/crandor/Util.java b/Server/src/org/crandor/Util.java new file mode 100644 index 000000000..0eb38f57f --- /dev/null +++ b/Server/src/org/crandor/Util.java @@ -0,0 +1,29 @@ +package org.crandor; + +public class Util { + + /** + * Capitalize the first letter of the string + * @return Capitalized string + */ + public static String capitalize(String name) { + if (name != null && name.length() != 0) { + char[] chars = name.toCharArray(); + chars[0] = Character.toUpperCase(chars[0]); + return new String(chars); + } else { + return name; + } + } + + public static String strToEnum(String name) { + name = name.toUpperCase(); + return name.replaceAll(" ", "_"); + } + + public static String enumToString(String name) { + name = name.toLowerCase(); + name = name.replaceAll("_", " "); + return capitalize(name); + } +} diff --git a/Server/src/org/crandor/game/container/impl/BankContainer.java b/Server/src/org/crandor/game/container/impl/BankContainer.java index d85b6d970..c94b330b5 100644 --- a/Server/src/org/crandor/game/container/impl/BankContainer.java +++ b/Server/src/org/crandor/game/container/impl/BankContainer.java @@ -24,7 +24,7 @@ public final class BankContainer extends Container { /** * The bank container size. */ - public static final int SIZE = 496; + public static final int SIZE = 800; /** * The maximum amount of bank tabs diff --git a/Server/src/org/crandor/game/content/dialogue/DialogueInterpreter.java b/Server/src/org/crandor/game/content/dialogue/DialogueInterpreter.java index 13c89025f..fc15f49a5 100644 --- a/Server/src/org/crandor/game/content/dialogue/DialogueInterpreter.java +++ b/Server/src/org/crandor/game/content/dialogue/DialogueInterpreter.java @@ -304,7 +304,7 @@ public final class DialogueInterpreter { player.getPacketDispatch().sendString(messages[i], 372, i + 1); } player.getInterfaceManager().openChatbox(372); - if (player.getAttributes().containsKey("tut-island") || TutorialSession.getExtension(player).getStage() <= TutorialSession.MAX_STAGE) { + if (player.getAttributes().containsKey("tut-island") || TutorialSession.getExtension(player).getStage() < TutorialSession.MAX_STAGE) { } return player.getInterfaceManager().getChatbox(); } @@ -497,7 +497,7 @@ public final class DialogueInterpreter { player.getPacketDispatch().sendString(messages[i].toString().replace("@name", player.getUsername()), interfaceId, (i + 4)); } player.getInterfaceManager().openChatbox(interfaceId); - if (player.getAttributes().containsKey("tut-island") || TutorialSession.getExtension(player).getStage() <= TutorialSession.MAX_STAGE) { + if (player.getAttributes().containsKey("tut-island") || TutorialSession.getExtension(player).getStage() < TutorialSession.MAX_STAGE) { } player.getPacketDispatch().sendInterfaceConfig(player.getInterfaceManager().getChatbox().getId(), 3, false); return player.getInterfaceManager().getChatbox(); diff --git a/Server/src/org/crandor/game/content/global/action/DropItemHandler.java b/Server/src/org/crandor/game/content/global/action/DropItemHandler.java index 54083597f..bcc95f29c 100644 --- a/Server/src/org/crandor/game/content/global/action/DropItemHandler.java +++ b/Server/src/org/crandor/game/content/global/action/DropItemHandler.java @@ -50,10 +50,8 @@ public final class DropItemHandler { if (player.getInventory().replace(null, item.getSlot()) == item) { item = item.getDropItem(); player.getAudioManager().send(new Audio(item.getId() == 995 ? 10 : 2739, 1, 0)); - if (!player.getDetails().getRights().equals(Rights.ADMINISTRATOR) || !player.getAttribute("tut-island", false)) { - GroundItemManager.create(item, player.getLocation(), player); - PlayerParser.dump(player); - } + GroundItemManager.create(item, player.getLocation(), player); + PlayerParser.dump(player); } else { GroundItemManager.create(item, player.getLocation(), player).setDecayTime(99); PlayerParser.dump(player); diff --git a/Server/src/org/crandor/game/content/global/consumable/CookingProperties.java b/Server/src/org/crandor/game/content/global/consumable/CookingProperties.java index f7b00070d..7404f4d2c 100644 --- a/Server/src/org/crandor/game/content/global/consumable/CookingProperties.java +++ b/Server/src/org/crandor/game/content/global/consumable/CookingProperties.java @@ -173,7 +173,9 @@ public class CookingProperties { public boolean cook(final Food food, final Player player, final GameObject object, final boolean burned) { if (player.getInventory().remove(food.getRaw())) { if (!burned) { - Perks.addDouble(player, food.getItem()); + Item item = food.getItem(); + player.getInventory().add(item); + Perks.addDouble(player, item); } else { player.getInventory().add(food.getBurnt()); } diff --git a/Server/src/org/crandor/game/content/skill/Skills.java b/Server/src/org/crandor/game/content/skill/Skills.java index 216239b78..20d065a95 100644 --- a/Server/src/org/crandor/game/content/skill/Skills.java +++ b/Server/src/org/crandor/game/content/skill/Skills.java @@ -3,7 +3,7 @@ package org.crandor.game.content.skill; import org.crandor.game.content.global.SkillcapePerks; import org.crandor.game.content.global.tutorial.TutorialSession; import org.crandor.game.content.holiday.HolidayEvent; -import org.crandor.game.events.GlobalEventManager; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.Entity; import org.crandor.game.node.entity.combat.ImpactHandler; import org.crandor.game.node.entity.npc.NPC; @@ -28,7 +28,7 @@ public final class Skills { /** * Represents the constant modifier of experience. */ - public static final double EXPERIENCE_MULTIPLIER = 35.3; + public static final double EXPERIENCE_MULTIPLIER = 20; /** * The maximum experience multiplier. @@ -258,7 +258,7 @@ public final class Skills { if (!(entity instanceof Player)) { return 1.0; } - double mod = multiplyer ? (GlobalEventManager.get().isActive("XPFever") ? EXPERIENCE_MULTIPLIER * 2 : EXPERIENCE_MULTIPLIER) : 1; + double mod = multiplyer ? (GlobalEvent.XP_FEVER.isActive() ? EXPERIENCE_MULTIPLIER * 2 : EXPERIENCE_MULTIPLIER) : 1; Player p = (Player) entity; if (p.getIronmanManager().getMode() == IronmanMode.ULTIMATE) { mod /= 4; @@ -267,12 +267,13 @@ public final class Skills { } //A boost for combat skills that are under level 65. if(entity instanceof Player && !this.hasLevel(slot, 65) && isCombat(slot)){ - mod *= 2.0; + mod *= 1.5; } //Grand Exchange region XP boost. if(entity.getViewport().getRegion().getRegionId() == 12598){ mod += 1.5; } + // Pest control, XP halved during the game if (entity.getViewport().getRegion().getRegionId() == 10536) { mod *= .5; } diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.java index b63b7b59b..a021bef48 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/armour/DragonCraftPulse.java @@ -100,7 +100,9 @@ public final class DragonCraftPulse extends SkillPulse { } else { player.getPacketDispatch().sendMessage("You make " + (StringUtils.isPlusN(ItemDefinition.forId(hide.getProduct()).getName().toLowerCase()) ? "an" : "a") + " " + ItemDefinition.forId(hide.getProduct()).getName().toLowerCase() + "."); } - Perks.addDouble(player, new Item(hide.getProduct())); + Item item = new Item(hide.getProduct()); + player.getInventory().add(item); + Perks.addDouble(player, item); if (player.getDetails().getShop().hasPerk(Perks.GOLDEN_NEEDLE) && RandomFunction.random(100) <= 10) { player.getSkills().addExperience(Skills.CRAFTING, (hide.getExperience() * 0.35), true); diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.java index 62ccff048..f8c6cb5fd 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/armour/HardCraftPulse.java @@ -80,7 +80,9 @@ public final class HardCraftPulse extends SkillPulse { } } if (player.getInventory().remove(new Item(LeatherCrafting.HARD_LEATHER))) { - Perks.addDouble(player, new Item(1131)); + Item item = new Item(1131); + player.getInventory().add(item); + Perks.addDouble(player, item); if (player.getDetails().getShop().hasPerk(Perks.GOLDEN_NEEDLE) && RandomFunction.random(100) <= 10) { player.getSkills().addExperience(Skills.CRAFTING, (35 * 0.35), true); player.sendMessage("Your golden needle rewards you with some extra XP!"); diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.java index 1ae842095..662ac7ac2 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/armour/SnakeSkinPulse.java @@ -87,7 +87,9 @@ public final class SnakeSkinPulse extends SkillPulse { } } if (player.getInventory().remove(new Item(6289, skin.getRequiredAmount()))) { - Perks.addDouble(player, skin.getProduct()); + Item item = skin.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); if (player.getDetails().getShop().hasPerk(Perks.GOLDEN_NEEDLE) && RandomFunction.random(100) <= 10) { player.getSkills().addExperience(Skills.CRAFTING, (skin.getExperience() * 0.35), true); player.sendMessage("Your golden needle rewards you with some extra XP!"); diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.java index 89e768130..0f88aaeb9 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/armour/SoftCraftPulse.java @@ -98,7 +98,9 @@ public final class SoftCraftPulse extends SkillPulse { } else { player.getPacketDispatch().sendMessage("You make " + (StringUtils.isPlusN(soft.getProduct().getName()) ? "an" : "a") + " " + soft.getProduct().getName().toLowerCase() + "."); } - Perks.addDouble(player, soft.getProduct()); + Item item = soft.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); if (player.getDetails().getShop().hasPerk(Perks.GOLDEN_NEEDLE) && RandomFunction.random(100) <= 10) { player.getSkills().addExperience(Skills.CRAFTING, (soft.getExperience() * 0.35), true); player.sendMessage("Your golden needle rewards you with some extra XP!"); diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.java index d47723f23..d2be3e447 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/gem/GemCutPulse.java @@ -73,7 +73,9 @@ public final class GemCutPulse extends SkillPulse { return false; } if (player.getInventory().remove(gem.getUncut())) { - Perks.addDouble(player, gem.getGem()); + final Item item = gem.getGem(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.CRAFTING, gem.getExp(), true); } amount--; diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.java index e53976ba8..9f4503338 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/jewellery/JewelleryPulse.java @@ -66,7 +66,9 @@ public final class JewelleryPulse extends SkillPulse { return false; } if (player.getInventory().remove(getItems())) { - Perks.addDouble(player, new Item(type.getSendItem())); + final Item item = new Item(type.getSendItem()); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.CRAFTING, type.getExperience(), true); } amount--; diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.java index b1b365e94..332812f28 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/pottery/FirePotteryPulse.java @@ -75,7 +75,9 @@ public final class FirePotteryPulse extends SkillPulse { if (player.getLocation().getY() == 3408 && player.getAttribute("spun-bowl", false) && !player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).isComplete(0, 9)) { player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).updateTask(player, 0, 9, true); } - Perks.addDouble(player, pottery.getProduct()); + final Item item = pottery.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.CRAFTING, pottery.getFireExp(), true); player.getPacketDispatch().sendMessage("You put the " + pottery.getUnfinished().getName().toLowerCase() + " in the oven."); player.getPacketDispatch().sendMessage("You remove a " + pottery.getProduct().getName().toLowerCase() + " from the oven."); diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.java index 33dc47729..b1402f08f 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/pottery/PotteryPulse.java @@ -81,7 +81,9 @@ public final class PotteryPulse extends SkillPulse { if (pottery == PotteryItem.BOWL && player.getLocation().getX() == 3086) { player.setAttribute("spun-bowl", true); } - Perks.addDouble(player, pottery.getUnfinished()); + final Item item = pottery.getUnfinished(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.CRAFTING, pottery.getExp(), true); player.getPacketDispatch().sendMessage("You make the soft clay into " + (StringUtils.isPlusN(pottery.getUnfinished().getName()) ? "an" : "a") + " " + pottery.getUnfinished().getName().toLowerCase() + "."); } diff --git a/Server/src/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.java b/Server/src/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.java index acb4fa8d7..4a7ce739a 100644 --- a/Server/src/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/crafting/spinning/SpinningPulse.java @@ -72,7 +72,9 @@ public final class SpinningPulse extends SkillPulse { return false; } if (player.getInventory().remove(new Item(type.getNeed(), 1))) { - Perks.addDouble(player, new Item(type.getProduct(), 1)); + final Item item = new Item(type.getProduct(), 1); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.CRAFTING, type.getExp(), true); } ammount--; diff --git a/Server/src/org/crandor/game/content/skill/free/fishing/FishingPulse.java b/Server/src/org/crandor/game/content/skill/free/fishing/FishingPulse.java index 706ab4be8..1fc9d7e75 100644 --- a/Server/src/org/crandor/game/content/skill/free/fishing/FishingPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/fishing/FishingPulse.java @@ -6,7 +6,7 @@ import org.crandor.game.content.global.tutorial.TutorialStage; import org.crandor.game.content.skill.SkillPulse; import org.crandor.game.content.skill.Skills; import org.crandor.game.content.skill.member.summoning.familiar.Forager; -import org.crandor.game.events.GlobalEventManager; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.npc.NPC; import org.crandor.game.node.entity.player.Player; import org.crandor.game.node.entity.player.info.portal.Perks; @@ -181,10 +181,12 @@ public final class FishingPulse extends SkillPulse { player.getSkillTasks().decreaseTask(player, SkillTasks.FTUNA2); } - if (GlobalEventManager.get().isActive("Plenty of fish")) + if (GlobalEvent.PLENTY_OF_FISH.isActive()) player.getInventory().add(fish.getItem()); SkillingPets.checkPetDrop(player, SkillingPets.HERON); - Perks.addDouble(player, fish.getItem()); + final Item item = fish.getItem(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.FISHING, fish.getExperience(), true); message(2); if (TutorialSession.getExtension(player).getStage() == 13) { diff --git a/Server/src/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.java b/Server/src/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.java index 4d6e7e788..0a1dbe7cc 100644 --- a/Server/src/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/gather/GatheringSkillPulse.java @@ -11,7 +11,7 @@ import org.crandor.game.content.global.tutorial.TutorialStage; import org.crandor.game.content.skill.SkillPulse; import org.crandor.game.content.skill.Skills; import org.crandor.game.content.skill.member.farming.wrapper.PatchWrapper; -import org.crandor.game.events.GlobalEventManager; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.impl.Projectile; import org.crandor.game.node.entity.player.Player; import org.crandor.game.node.entity.player.info.portal.Perks; @@ -39,9 +39,24 @@ public final class GatheringSkillPulse extends SkillPulse { private static final Item[] GEM_REWARDS = { new Item(1623), new Item(1621), new Item(1619), new Item(1617) }; /** - * If the player is mining. + * Is the player is mining. */ - private boolean mining; + private boolean isMining; + + /** + * Is the player is mining essence. + */ + private boolean isMiningEssence; + + /** + * Is the player is mining gems. + */ + private boolean isMiningGems; + + /** + * Is the player is woodcutting. + */ + private boolean isWoodcutting; /** * The amount of ticks it takes to get a log. @@ -71,18 +86,21 @@ public final class GatheringSkillPulse extends SkillPulse { if (TutorialSession.getExtension(player).getStage() == 35) { TutorialStage.load(player, 36, false); } - mining = resource.getSkillId() == Skills.MINING; + isMining = resource.getSkillId() == Skills.MINING; + isMiningEssence = resource == SkillingResource.RUNE_ESSENCE; + isMiningGems = resource.getReward() == SkillingResource.GEM_ROCK_0.getReward(); + isWoodcutting = resource.getSkillId() == Skills.WOODCUTTING; super.start(); } @Override public boolean checkRequirements() { if (player.getSkills().getLevel(resource.getSkillId()) < resource.getLevel()) { - player.getPacketDispatch().sendMessage("You need a " + Skills.SKILL_NAME[resource.getSkillId()] + " level of " + resource.getLevel() + " to " + (mining ? "mine this rock." : "cut this tree.")); + player.getPacketDispatch().sendMessage("You need a " + Skills.SKILL_NAME[resource.getSkillId()] + " level of " + resource.getLevel() + " to " + (isMining ? "mine this rock." : "cut this tree.")); return false; } if (setTool() == null) { - player.getPacketDispatch().sendMessage("You do not have a" + (mining ? " pickaxe" : "n axe") + " to use."); + player.getPacketDispatch().sendMessage("You do not have a" + (isMining ? " pickaxe" : "n axe") + " to use."); return false; } if (player.getInventory().freeSlots() < 1) { @@ -103,7 +121,7 @@ public final class GatheringSkillPulse extends SkillPulse { @Override public boolean reward() { - if (++ticks % (resource == SkillingResource.RUNE_ESSENCE ? 3 : 4) != 0) { + if (++ticks % (isMiningEssence ? 3 : 4) != 0) { return false; } if (node.getId() == 10041) { @@ -124,112 +142,42 @@ public final class GatheringSkillPulse extends SkillPulse { } else if (tutorialStage == 37 && node.getId() == 3042) { TutorialStage.load(player, 39, false); } - if (resource.getSkillId() == Skills.WOODCUTTING && player.getLocation().getRegionId() == 12102) { + // If player is in donator zone + if (isWoodcutting && player.getLocation().getRegionId() == 12102) { player.getAntiMacroHandler().fireEvent("tree spirit"); return true; } - if (resource.getSkillId() == Skills.WOODCUTTING && tool.getId() == 13661 && RandomFunction.random(100) < 30){ + // 20% chance to auto burn logs when using "inferno adze" item + if (isWoodcutting && tool.getId() == 13661 && RandomFunction.random(100) < 20){ player.sendMessage("Your chop some logs. The heat of the inferno adze incinerates them."); Projectile.create(player, null, 1776, 35, 30, 20, 25).transform(player, new Location(player.getLocation().getX() + 2, player.getLocation().getY()), true, 25, 25).send(); player.getSkills().addExperience(Skills.WOODCUTTING, resource.getExperience()); player.getSkills().addExperience(Skills.FIREMAKING, resource.getExperience()); return false; } - if (resource.getReward() > 0) { - int reward = resource.getReward(); - if (reward == 6333 && !player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).isComplete(1, 4)) { - player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).updateTask(player, 1, 4, true); - } else if (reward == 6332 && !player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).isComplete(1, 5)) { - player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).updateTask(player, 1, 5, true); + int reward = resource.getReward(); + if (reward > 0) { + reward = calculateReward(reward); + applyAchievementTask(reward); + // Give the player the items + int rewardAmount = calculateRewardAmount(reward); + Item item = new Item(reward, rewardAmount); + player.getInventory().add(item); + Perks.addDouble(player, item); + // Apply the experience points + double experience = calculateExperience(reward, rewardAmount); + player.getSkills().addExperience(resource.getSkillId(), experience, true); + // Send a message to the player + if (isMiningGems) { + String gemName = ItemDefinition.forId(reward).getName().toLowerCase(); + player.sendMessage("You get " + (StringUtils.isPlusN(gemName) ? "an" : "a") + " " + gemName + "."); + } else if (resource == SkillingResource.DRAMEN_TREE) { + player.getPacketDispatch().sendMessage("You cut a branch from the Dramen tree."); + } else { + player.getPacketDispatch().sendMessage("You get some " + ItemDefinition.forId(reward).getName().toLowerCase() + "."); } - if (reward == 440 && player.getLocation().withinDistance(new Location(3285, 3363, 0)) && !player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).isComplete(0, 2)) { - player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).updateTask(player, 0, 2, true); - } - if (resource == SkillingResource.RUNE_ESSENCE && player.getSkills().getLevel(Skills.MINING) > 29) { - reward = 7936; - } - if (node.getId() == 24168 && !player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).isComplete(0, 6)) { - player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).updateTask(player, 0, 6, true); - } - if (reward == 440 && player.getViewport().getRegion().getId() == 13107 && !player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).isComplete(0, 8)) { - player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).updateTask(player, 0, 8, true); - } - if (reward == 1519 && player.getViewport().getRegion().getId() == 12338 && !player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).isComplete(1, 5)) { - player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).updateTask(player, 1, 5, true); - } - if (reward != 3239 || RandomFunction.random(100) < 10) { // Hollow - // tree - // (bark) - if (resource == SkillingResource.SANDSTONE || resource == SkillingResource.GRANITE) { - int value = RandomFunction.randomize(resource == SkillingResource.GRANITE ? 3 : 4); - reward += value << 1; - player.getSkills().addExperience(resource.getSkillId(), value * 10, true); - } - player.getInventory().add(new Item(reward, (GlobalEventManager.get().isActive("Lumberjack") && ItemDefinition.forId(reward).getName().toLowerCase().contains("logs") ? 2 : 1))); - if (reward == SkillingResource.CLAY_0.getReward()) { - if (player.getEquipment().contains(11074, 1)) { - player.getSavedData().getGlobalData().incrementBraceletOfClay(); - if (player.getSavedData().getGlobalData().getBraceletClayUses() >= 28) { - player.getSavedData().getGlobalData().setBraceletClayUses(0); - player.getEquipment().remove(new Item(11074)); - player.sendMessage("Your bracelet of clay has disinegrated."); - } - reward = 1761; - } - } - boolean gem = false; - if (reward == SkillingResource.GEM_ROCK_0.getReward()) { - gem = true; - int random = RandomFunction.random(100); - List gems = new ArrayList<>(); - if (random < 2) { - gems.add(1617); - } else if (random < 25) { - gems.add(1619); - gems.add(1623); - gems.add(1621); - } else if (random < 40) { - gems.add(1629); - } else { - gems.add(1627); - gems.add(1625); - } - reward = gems.get(RandomFunction.random(gems.size())); - if (reward == 1629) { - if (!player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).isComplete(1, 11)) { - player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).updateTask(player, 1, 11, true); - } - } - } - if (mining && player.getSavedData().getGlobalData().getStarSpriteDelay() > System.currentTimeMillis() && TimeUnit.MILLISECONDS.toMinutes(player.getSavedData().getGlobalData().getStarSpriteDelay() - System.currentTimeMillis()) >= 1425) { - player.getInventory().add(new Item(reward, 2)); - } else if (mining && player.getInventory().freeSlots() != 0 && player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).getLevel() != -1 && player.getAchievementDiaryManager().checkMiningReward(reward) && RandomFunction.random(100) <= 10) { - player.getInventory().add(new Item(reward, 2)); - player.sendMessage("Through the power of the varrock armour you receive double the reward."); - } else { - if (SkillcapePerks.hasSkillcapePerk(player, SkillcapePerks.MINING) && mining) { - if (RandomFunction.getRandom(100) <= 10) { - player.getSkills().addExperience(resource.getSkillId(), resource.getExperience(), true); - player.getInventory().add(new Item(reward, 1), player); - player.sendNotificationMessage("Your " + player.getEquipment().get(EquipmentContainer.SLOT_CAPE).getName() + " allows you to obtain two ores from this rock!"); - } - } - SkillingPets.checkPetDrop(player, mining ? SkillingPets.GOLEM : SkillingPets.BEAVER); - Perks.addDouble(player, new Item(reward, 1)); - } - if (gem) { - String gemName = ItemDefinition.forId(reward).getName().toLowerCase(); - player.sendMessage("You get " + (StringUtils.isPlusN(gemName) ? "an" : "a") + " " + gemName + "."); - } else if (resource == SkillingResource.DRAMEN_TREE) { - player.getPacketDispatch().sendMessage("You cut a branch from the Dramen tree."); - } else { - player.getPacketDispatch().sendMessage("You get some " + ItemDefinition.forId(reward).getName().toLowerCase() + "."); - } - if (reward == 3239) { - player.getSkills().addExperience(resource.getSkillId(), 275.2, true); - } - } - if (resource != SkillingResource.RUNE_ESSENCE && mining) { + // Calculate if the player should receive a bonus gem + if (!isMiningEssence && isMining) { int chance = 282; boolean altered = false; if (player.getEquipment().getNew(EquipmentContainer.SLOT_RING).getId() == 2572) { @@ -252,28 +200,25 @@ public final class GatheringSkillPulse extends SkillPulse { } } } - if (mining && resource.getReward() == 444 && !player.getAchievementDiaryManager().hasCompletedTask(DiaryType.KARAMJA, 0, 2)) { - if (player.getLocation().getRegionId() == 10801 || player.getLocation().getRegionId() == 10802) { - player.getAchievementDiaryManager().updateTask(player, DiaryType.KARAMJA, 0, 2, true); + // Calculate if the player should receive a bonus birds nest + if (isWoodcutting) { + int chance = 282; + if (player.getDetails().getShop().hasPerk(Perks.BIRD_MAN)) { + chance /= 1.5; + } + if (SkillcapePerks.hasSkillcapePerk(player, SkillcapePerks.WOODCUTTING)) { + chance /= 1.88; + } + if (RandomFunction.random(chance) == 0) { + BirdNest.drop(player); } } } + // Tutorial stuff, maybe? if (tutorialStage == 7) { TutorialStage.load(player, 8, false); } - if (!mining) { - int chance = 282; - if (player.getDetails().getShop().hasPerk(Perks.BIRD_MAN)) { - chance /= 1.5; - } - if (SkillcapePerks.hasSkillcapePerk(player, SkillcapePerks.WOODCUTTING)) { - chance /= 1.88; - } - if (RandomFunction.random(chance) == 0) { - BirdNest.drop(player); - } - } - player.getSkills().addExperience(resource.getSkillId(), resource.getExperience(), true); + // not sure what this is exactly if (resource.getRespawnRate() != 0) { int charge = 1000 / resource.getRewardAmount(); node.setCharge(node.getCharge() - RandomFunction.random(charge, charge << 2)); @@ -297,23 +242,165 @@ public final class GatheringSkillPulse extends SkillPulse { return false; } + /** + * Checks if the has completed any achievements from their diary + */ + private void applyAchievementTask(int reward) { + if (reward == 6333 && !player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).isComplete(1, 4)) { + player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).updateTask(player, 1, 4, true); + } else if (reward == 6332 && !player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).isComplete(1, 5)) { + player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).updateTask(player, 1, 5, true); + } + if (reward == 440 && player.getLocation().withinDistance(new Location(3285, 3363, 0)) && !player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).isComplete(0, 2)) { + player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).updateTask(player, 0, 2, true); + } + if (node.getId() == 24168 && !player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).isComplete(0, 6)) { + player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).updateTask(player, 0, 6, true); + } + if (reward == 440 && player.getViewport().getRegion().getId() == 13107 && !player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).isComplete(0, 8)) { + player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).updateTask(player, 0, 8, true); + } + if (reward == 1519 && player.getViewport().getRegion().getId() == 12338 && !player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).isComplete(1, 5)) { + player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).updateTask(player, 1, 5, true); + } + if (reward == 444 && !player.getAchievementDiaryManager().hasCompletedTask(DiaryType.KARAMJA, 0, 2)) { + if (player.getLocation().getRegionId() == 10801 || player.getLocation().getRegionId() == 10802) { + player.getAchievementDiaryManager().updateTask(player, DiaryType.KARAMJA, 0, 2, true); + } + } + if (reward == 1629) { + if (!player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).isComplete(1, 11)) { + player.getAchievementDiaryManager().getDiary(DiaryType.KARAMJA).updateTask(player, 1, 11, true); + } + } + } + /** * Checks if the player gets rewarded. * @return {@code True} if so. */ private boolean checkReward() { - int skill = mining ? Skills.MINING : Skills.WOODCUTTING; + int skill = isMining ? Skills.MINING : Skills.WOODCUTTING; int level = 1 + player.getSkills().getLevel(skill) + player.getFamiliarManager().getBoost(skill); double hostRatio = Math.random() * (100.0 * resource.getRate()); double clientRatio = Math.random() * ((level - resource.getLevel()) * (1.0 + tool.getRatio())); return hostRatio < clientRatio; } + + private int calculateReward(int reward) { + // If the player is mining sandstone or granite, then i'm not sure what this does? + if (resource == SkillingResource.SANDSTONE || resource == SkillingResource.GRANITE) { + int value = RandomFunction.randomize(resource == SkillingResource.GRANITE ? 3 : 4); + reward += value << 1; + player.getSkills().addExperience(resource.getSkillId(), value * 10, true); + } + + // If the player is mining clay + else if (reward == SkillingResource.CLAY_0.getReward()) { + // Check if they have a bracelet of clay equiped + if (player.getEquipment().contains(11074, 1)) { + player.getSavedData().getGlobalData().incrementBraceletOfClay(); + if (player.getSavedData().getGlobalData().getBraceletClayUses() >= 28) { + player.getSavedData().getGlobalData().setBraceletClayUses(0); + player.getEquipment().remove(new Item(11074)); + player.sendMessage("Your bracelet of clay has disinegrated."); + } + // Give soft clay + reward = 1761; + } + } + + // Convert rune essence to pure essence if the player is above level 30 mining + else if (isMiningEssence && player.getSkills().getLevel(Skills.MINING) >= 30) { + reward = 7936; + } + + // Calculate a random gem for the player + else if (isMiningGems) { + int random = RandomFunction.random(100); + List gems = new ArrayList<>(); + if (random < 2) { + gems.add(1617); + } else if (random < 25) { + gems.add(1619); + gems.add(1623); + gems.add(1621); + } else if (random < 40) { + gems.add(1629); + } else { + gems.add(1627); + gems.add(1625); + } + reward = gems.get(RandomFunction.random(gems.size())); + } + + return reward; + } + + /** + * Calculate the total amount of items the player should receive + * @return amount of items + */ + private int calculateRewardAmount(int reward) { + int amount = 1; + // Event doubles resources + if (GlobalEvent.HARVESTING_DOUBLES.isActive()) { + amount *= 2; + } + + if (isMining && !isMiningEssence) { + // Not sure what this bonus is for + if (isMining && player.getSavedData().getGlobalData().getStarSpriteDelay() > System.currentTimeMillis() && TimeUnit.MILLISECONDS.toMinutes(player.getSavedData().getGlobalData().getStarSpriteDelay() - System.currentTimeMillis()) >= 1425) { + amount += 1; + } + // Not sure what this bonus is for + else if (isMining && !isMiningEssence && player.getAchievementDiaryManager().getDiary(DiaryType.VARROCK).getLevel() != -1 && player.getAchievementDiaryManager().checkMiningReward(reward) && RandomFunction.random(100) <= 10) { + amount += 1; + player.sendMessage("Through the power of the varrock armour you receive an extra ore."); + } + // If the player has a skill cape, 10% chance of finding an extra item + else if (isMining && !isMiningEssence && SkillcapePerks.hasSkillcapePerk(player, SkillcapePerks.MINING) && RandomFunction.getRandom(100) <= 10) { + amount += 1; + player.sendNotificationMessage("Your " + player.getEquipment().get(EquipmentContainer.SLOT_CAPE).getName() + " allows you to obtain two ores from this rock!"); + } + } + + // 3239: Hollow tree (bark) 10% chance of obtaining + if (reward == 3239 && RandomFunction.random(100) >= 10) { + amount = 0; + } + + SkillingPets.checkPetDrop(player, isMining ? SkillingPets.GOLEM : SkillingPets.BEAVER); + + return amount; + } + + /** + * Calculate the total experience the player should receive + * @return amount of experience + */ + private double calculateExperience(int reward, int amount) { + double experience = resource.getExperience(); + + // Bark + if (reward == 3239) { + // If we receive the item, give the full experience points otherwise give the base amount + if (amount >= 1) { + experience = 275.2; + } else { + amount = 1; + } + } + + return experience * amount; + } + @Override public void message(int type) { switch (type) { case 0: - player.getPacketDispatch().sendMessage("You swing your " + (mining ? "pickaxe at the rock..." : "axe at the tree...")); + player.getPacketDispatch().sendMessage("You swing your " + (isMining ? "pickaxe at the rock..." : "axe at the tree...")); if (TutorialSession.getExtension(player).getStage() == 6) { player.lock(7); TutorialStage.load(player, 7, false); @@ -326,7 +413,7 @@ public final class GatheringSkillPulse extends SkillPulse { * Sets the tool used. */ private SkillingTool setTool() { - if (!mining) { + if (!isMining) { tool = SkillingTool.getHatchet(player); } else { tool = SkillingTool.getPickaxe(player); diff --git a/Server/src/org/crandor/game/content/skill/free/gather/SkillingResource.java b/Server/src/org/crandor/game/content/skill/free/gather/SkillingResource.java index bf31b0fd7..e0a372cbd 100644 --- a/Server/src/org/crandor/game/content/skill/free/gather/SkillingResource.java +++ b/Server/src/org/crandor/game/content/skill/free/gather/SkillingResource.java @@ -17,17 +17,67 @@ public enum SkillingResource { /** * Standard tree (Woodcutting). */ - STANDARD_TREE_1(1276, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_2(1277, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1343, Skills.WOODCUTTING), STANDARD_TREE_3(1278, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_4(1279, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1345, Skills.WOODCUTTING), STANDARD_TREE_5(1280, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1343, Skills.WOODCUTTING), STANDARD_TREE_6(1330, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1341, Skills.WOODCUTTING), STANDARD_TREE_7(1331, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1341, Skills.WOODCUTTING), STANDARD_TREE_8(1332, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1341, Skills.WOODCUTTING), STANDARD_TREE_9(2409, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_10(3033, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1345, Skills.WOODCUTTING), STANDARD_TREE_11(3034, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1345, Skills.WOODCUTTING), STANDARD_TREE_12(3035, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1347, Skills.WOODCUTTING), STANDARD_TREE_13(3036, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1351, Skills.WOODCUTTING), STANDARD_TREE_14(3879, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3880, Skills.WOODCUTTING), STANDARD_TREE_15(3881, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3880, Skills.WOODCUTTING), STANDARD_TREE_16(3882, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3880, Skills.WOODCUTTING), STANDARD_TREE_17(3883, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3884, Skills.WOODCUTTING), STANDARD_TREE_18(10041, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_19(14308, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_20(14309, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_21(16264, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_22(16265, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_23(30132, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_24(30133, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_25(37477, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), STANDARD_TREE_26(37478, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 37653, Skills.WOODCUTTING), STANDARD_TREE_27(37652, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 37653, Skills.WOODCUTTING), + STANDARD_TREE_1(1276, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_2(1277, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1343, Skills.WOODCUTTING), + STANDARD_TREE_3(1278, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_4(1279, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1345, Skills.WOODCUTTING), + STANDARD_TREE_5(1280, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1343, Skills.WOODCUTTING), + STANDARD_TREE_6(1330, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1341, Skills.WOODCUTTING), + STANDARD_TREE_7(1331, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1341, Skills.WOODCUTTING), + STANDARD_TREE_8(1332, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1341, Skills.WOODCUTTING), + STANDARD_TREE_9(2409, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_10(3033, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1345, Skills.WOODCUTTING), + STANDARD_TREE_11(3034, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1345, Skills.WOODCUTTING), + STANDARD_TREE_12(3035, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1347, Skills.WOODCUTTING), + STANDARD_TREE_13(3036, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1351, Skills.WOODCUTTING), + STANDARD_TREE_14(3879, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3880, Skills.WOODCUTTING), + STANDARD_TREE_15(3881, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3880, Skills.WOODCUTTING), + STANDARD_TREE_16(3882, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3880, Skills.WOODCUTTING), + STANDARD_TREE_17(3883, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 3884, Skills.WOODCUTTING), + STANDARD_TREE_18(10041, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_19(14308, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_20(14309, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_21(16264, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_22(16265, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_23(30132, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_24(30133, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_25(37477, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 1342, Skills.WOODCUTTING), + STANDARD_TREE_26(37478, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 37653, Skills.WOODCUTTING), + STANDARD_TREE_27(37652, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "tree", null, 37653, Skills.WOODCUTTING), /** * Fruit trees. */ - APPLE_TREE(7941, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), BANANA_TREE(8000, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), ORANGE_TREE(8057, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), CURRY_TREE(8026, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), PINEAPPLE_TREE(7972, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), PAPAYA_TREE(8111, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), PALM_TREE(8084, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + APPLE_TREE(7941, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + BANANA_TREE(8000, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + ORANGE_TREE(8057, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + CURRY_TREE(8026, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + PINEAPPLE_TREE(7972, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + PAPAYA_TREE(8111, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), + PALM_TREE(8084, 1, 0.05, 50 | 100 << 16, 25.0, -1, 1, "tree", null, 37653, Skills.WOODCUTTING, true), /** * Dead tree (Woodcutting). */ - DEAD_TREE_1(1282, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), DEAD_TREE_2(1283, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), DEAD_TREE_3(1284, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1348, Skills.WOODCUTTING), DEAD_TREE_4(1285, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1349, Skills.WOODCUTTING), DEAD_TREE_5(1286, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1351, Skills.WOODCUTTING), DEAD_TREE_6(1289, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), DEAD_TREE_7(1290, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1354, Skills.WOODCUTTING), DEAD_TREE_8(1291, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 23054, Skills.WOODCUTTING), DEAD_TREE_9(1365, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1352, Skills.WOODCUTTING), DEAD_TREE_10(1383, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1358, Skills.WOODCUTTING), DEAD_TREE_11(1384, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1359, Skills.WOODCUTTING), DEAD_TREE_12(5902, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), DEAD_TREE_13(5903, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), DEAD_TREE_14(5904, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), DEAD_TREE_15(32294, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), DEAD_TREE_16(37481, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), DEAD_TREE_17(37482, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1351, Skills.WOODCUTTING), DEAD_TREE_18(37483, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1358, Skills.WOODCUTTING), DEAD_TREE_19(24168, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dying tree", null, 24169, Skills.WOODCUTTING), + DEAD_TREE_1(1282, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), + DEAD_TREE_2(1283, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), + DEAD_TREE_3(1284, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1348, Skills.WOODCUTTING), + DEAD_TREE_4(1285, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1349, Skills.WOODCUTTING), + DEAD_TREE_5(1286, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1351, Skills.WOODCUTTING), + DEAD_TREE_6(1289, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), + DEAD_TREE_7(1290, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1354, Skills.WOODCUTTING), + DEAD_TREE_8(1291, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 23054, Skills.WOODCUTTING), + DEAD_TREE_9(1365, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1352, Skills.WOODCUTTING), + DEAD_TREE_10(1383, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1358, Skills.WOODCUTTING), + DEAD_TREE_11(1384, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1359, Skills.WOODCUTTING), + DEAD_TREE_12(5902, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), + DEAD_TREE_13(5903, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), + DEAD_TREE_14(5904, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), + DEAD_TREE_15(32294, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1353, Skills.WOODCUTTING), + DEAD_TREE_16(37481, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1347, Skills.WOODCUTTING), + DEAD_TREE_17(37482, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1351, Skills.WOODCUTTING), + DEAD_TREE_18(37483, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dead tree", null, 1358, Skills.WOODCUTTING), + DEAD_TREE_19(24168, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "dying tree", null, 24169, Skills.WOODCUTTING), /** * Dramen tree (Woodcutting/Lost city quest). @@ -37,14 +87,22 @@ public enum SkillingResource { /** * Evergreen (Woodcutting). */ - EVERGREEN_1(1315, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1342, Skills.WOODCUTTING), EVERGREEN_2(1316, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1355, Skills.WOODCUTTING), EVERGREEN_3(1318, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1355, Skills.WOODCUTTING), EVERGREEN_4(1319, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1355, Skills.WOODCUTTING), + EVERGREEN_1(1315, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1342, Skills.WOODCUTTING), + EVERGREEN_2(1316, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1355, Skills.WOODCUTTING), + EVERGREEN_3(1318, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1355, Skills.WOODCUTTING), + EVERGREEN_4(1319, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 1, "evergreen", null, 1355, Skills.WOODCUTTING), /** * Jungle tree (Woodcutting). */ - JUNGLE_TREE_1(2887, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), JUNGLE_TREE_2(2889, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), JUNGLE_TREE_3(2890, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), JUNGLE_TREE_4(4818, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), JUNGLE_TREE_5(4820, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), + JUNGLE_TREE_1(2887, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), + JUNGLE_TREE_2(2889, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), + JUNGLE_TREE_3(2890, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), + JUNGLE_TREE_4(4818, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), + JUNGLE_TREE_5(4820, 1, 0.05, 50 | 100 << 16, 25.0, 1511, 2, "jungle tree", null, 0, Skills.WOODCUTTING), - JUNGLE_BUSH_1(2892, 1, 0.15, 50 | 100 << 16, 100.0, 1511, 1, "jungle bush", null, 2894, Skills.WOODCUTTING), JUNGLE_BUSH_2(2893, 1, 0.15, 50 | 100 << 16, 100.0, 1511, 1, "jungle bush", null, 2895, Skills.WOODCUTTING), + JUNGLE_BUSH_1(2892, 1, 0.15, 50 | 100 << 16, 100.0, 1511, 1, "jungle bush", null, 2894, Skills.WOODCUTTING), + JUNGLE_BUSH_2(2893, 1, 0.15, 50 | 100 << 16, 100.0, 1511, 1, "jungle bush", null, 2895, Skills.WOODCUTTING), /** * Achey tree (Woodcutting). @@ -54,27 +112,39 @@ public enum SkillingResource { /** * Oak tree (Woodcutting). */ - OAK_TREE_1(1281, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1356, Skills.WOODCUTTING), OAK_TREE_2(3037, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1357, Skills.WOODCUTTING), OAK_TREE_3(37479, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1356, Skills.WOODCUTTING), OAK_TREE_4(8467, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1356, Skills.WOODCUTTING, true), + OAK_TREE_1(1281, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1356, Skills.WOODCUTTING), + OAK_TREE_2(3037, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1357, Skills.WOODCUTTING), + OAK_TREE_3(37479, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1356, Skills.WOODCUTTING), + OAK_TREE_4(8467, 15, 0.15, 14 | 22 << 16, 37.5, 1521, 10, "oak tree", null, 1356, Skills.WOODCUTTING, true), /** * Willow tree (Woodcutting). */ - WILLOW_TREE_1(1308, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 7399, Skills.WOODCUTTING), WILLOW_TREE_2(5551, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 5554, Skills.WOODCUTTING), WILLOW_TREE_3(5552, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 5554, Skills.WOODCUTTING), WILLOW_TREE_4(5553, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 5554, Skills.WOODCUTTING), WILLOW_TREE_5(37480, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 7399, Skills.WOODCUTTING), WILLOW_TREE_6(8488, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 7399, Skills.WOODCUTTING, true), + WILLOW_TREE_1(1308, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 7399, Skills.WOODCUTTING), + WILLOW_TREE_2(5551, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 5554, Skills.WOODCUTTING), + WILLOW_TREE_3(5552, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 5554, Skills.WOODCUTTING), + WILLOW_TREE_4(5553, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 5554, Skills.WOODCUTTING), + WILLOW_TREE_5(37480, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 7399, Skills.WOODCUTTING), + WILLOW_TREE_6(8488, 30, 0.3, 14 | 22 << 16, 67.8, 1519, 20, "willow tree", null, 7399, Skills.WOODCUTTING, true), /** * Teak (Woodcutting). */ - TEAK_1(9036, 35, 0.7, 35 | 60 << 16, 85.0, 6333, 25, "teak", null, 9037, Skills.WOODCUTTING), TEAK_2(15062, 35, 0.7, 35 | 60 << 16, 85.0, 6333, 25, "teak", null, 9037, Skills.WOODCUTTING), + TEAK_1(9036, 35, 0.7, 35 | 60 << 16, 85.0, 6333, 25, "teak", null, 9037, Skills.WOODCUTTING), + TEAK_2(15062, 35, 0.7, 35 | 60 << 16, 85.0, 6333, 25, "teak", null, 9037, Skills.WOODCUTTING), /** * Maple tree (Woodcutting). */ - MAPLE_TREE_1(1307, 45, 0.65, 58 | 100 << 16, 100.0, 1517, 30, "maple tree", null, 7400, Skills.WOODCUTTING), MAPLE_TREE_2(4674, 45, 0.65, 58 | 100 << 16, 100.0, 1517, 30, "maple tree", null, 7400, Skills.WOODCUTTING), MAPLE_TREE_3(8444, 45, 0.65, 58 | 100 << 16, 100.0, 1517, 30, "maple tree", null, 7400, Skills.WOODCUTTING, true), + MAPLE_TREE_1(1307, 45, 0.65, 58 | 100 << 16, 100.0, 1517, 30, "maple tree", null, 7400, Skills.WOODCUTTING), + MAPLE_TREE_2(4674, 45, 0.65, 58 | 100 << 16, 100.0, 1517, 30, "maple tree", null, 7400, Skills.WOODCUTTING), + MAPLE_TREE_3(8444, 45, 0.65, 58 | 100 << 16, 100.0, 1517, 30, "maple tree", null, 7400, Skills.WOODCUTTING, true), /** * Hollow tree (Woodcutting). */ - HOLLOW_TREE_1(2289, 45, 0.6, 58 | 100 << 16, 82.5, 3239, 30, "hollow tree", null, 2310, Skills.WOODCUTTING), HOLLOW_TREE_2(4060, 45, 0.6, 58 | 100 << 16, 82.5, 3239, 30, "hollow tree", null, 4061, Skills.WOODCUTTING), + HOLLOW_TREE_1(2289, 45, 0.6, 58 | 100 << 16, 82.5, 3239, 30, "hollow tree", null, 2310, Skills.WOODCUTTING), + HOLLOW_TREE_2(4060, 45, 0.6, 58 | 100 << 16, 82.5, 3239, 30, "hollow tree", null, 4061, Skills.WOODCUTTING), /** * Mahogany (Woodcutting). @@ -89,29 +159,111 @@ public enum SkillingResource { /** * Eucalyptus tree (Woodcutting). */ - EUCALYPTUS_1(28951, 58, 0.77, 80 | 140 << 16, 165.0, 12581, 35, "eucalyptus tree", null, 28954, Skills.WOODCUTTING), EUCALYPTUS_2(28952, 58, 0.77, 80 | 140 << 16, 165.0, 12581, 35, "eucalyptus tree", null, 28955, Skills.WOODCUTTING), EUCALYPTUS_3(28953, 58, 0.77, 80 | 140 << 16, 165.0, 12581, 35, "eucalyptus tree", null, 28956, Skills.WOODCUTTING), + EUCALYPTUS_1(28951, 58, 0.77, 80 | 140 << 16, 165.0, 12581, 35, "eucalyptus tree", null, 28954, Skills.WOODCUTTING), + EUCALYPTUS_2(28952, 58, 0.77, 80 | 140 << 16, 165.0, 12581, 35, "eucalyptus tree", null, 28955, Skills.WOODCUTTING), + EUCALYPTUS_3(28953, 58, 0.77, 80 | 140 << 16, 165.0, 12581, 35, "eucalyptus tree", null, 28956, Skills.WOODCUTTING), /** * Yew tree (Woodcutting). */ - YEW(1309, 60, 0.8, 100 | 162 << 16, 175.0, 1515, 40, "yew", null, 7402, Skills.WOODCUTTING), YEW_1(8513, 60, 0.8, 100 | 162 << 16, 175.0, 1515, 40, "yew", null, 7402, Skills.WOODCUTTING, true), + YEW(1309, 60, 0.8, 100 | 162 << 16, 175.0, 1515, 40, "yew", null, 7402, Skills.WOODCUTTING), + YEW_1(8513, 60, 0.8, 100 | 162 << 16, 175.0, 1515, 40, "yew", null, 7402, Skills.WOODCUTTING, true), /** * Magic tree (Woodcutting). */ - MAGIC_TREE_1(1306, 75, 0.9, 200 | 317 << 16, 250.0, 1513, 50, "magic tree", null, 7401, Skills.WOODCUTTING), MAGIC_TREE_2(37823, 75, 0.9, 200 | 317 << 16, 250.0, 1513, 50, "magic tree", null, 37824, Skills.WOODCUTTING), MAGIC_TREE_3(8409, 75, 0.9, 200 | 317 << 16, 250.0, 1513, 50, "magic tree", null, 37824, Skills.WOODCUTTING, true), + MAGIC_TREE_1(1306, 75, 0.9, 200 | 317 << 16, 250.0, 1513, 50, "magic tree", null, 7401, Skills.WOODCUTTING), + MAGIC_TREE_2(37823, 75, 0.9, 200 | 317 << 16, 250.0, 1513, 50, "magic tree", null, 37824, Skills.WOODCUTTING), + MAGIC_TREE_3(8409, 75, 0.9, 200 | 317 << 16, 250.0, 1513, 50, "magic tree", null, 37824, Skills.WOODCUTTING, true), CURSED_MAGIC_TREE(37821, 82, 0.95, 200 | 317 << 16, 275.0, 1513, 50, "magic tree", null, 37822, Skills.WOODCUTTING), /** * Copper ore (Mining). */ - COPPER_ORE_0(2090, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 450, Skills.MINING), COPPER_ORE_1(2091, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 452, Skills.MINING), COPPER_ORE_2(4976, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 4994, Skills.MINING), COPPER_ORE_3(4977, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 4995, Skills.MINING), COPPER_ORE_4(4978, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 4996, Skills.MINING), COPPER_ORE_5(9710, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 18954, Skills.MINING), COPPER_ORE_6(9709, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 32448, Skills.MINING), COPPER_ORE_7(9708, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 32447, Skills.MINING), COPPER_ORE_8(11960, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11555, Skills.MINING), COPPER_ORE_9(11961, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11556, Skills.MINING), COPPER_ORE_10(11962, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11557, Skills.MINING), COPPER_ORE_11(11937, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11553, Skills.MINING), COPPER_ORE_12(11936, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11552, Skills.MINING), COPPER_ORE_13(11938, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11554, Skills.MINING), COPPER_ORE_14(12746, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 450, Skills.MINING), COPPER_ORE_15(14906, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 14894, Skills.MINING), COPPER_ORE_16(14907, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 14895, Skills.MINING), COPPER_ORE_17(20448, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20445, Skills.MINING), COPPER_ORE_18(20451, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20445, Skills.MINING), COPPER_ORE_19(20446, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20443, Skills.MINING), COPPER_ORE_20(20447, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20444, Skills.MINING), COPPER_ORE_21(20408, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20407, Skills.MINING), COPPER_ORE_22(18993, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19005, Skills.MINING), COPPER_ORE_23(18992, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19004, Skills.MINING), COPPER_ORE_24(19007, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19016, Skills.MINING), COPPER_ORE_25(19006, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19021, Skills.MINING), COPPER_ORE_26(18991, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19003, Skills.MINING), COPPER_ORE_27(19008, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19017, Skills.MINING), COPPER_ORE_28(21285, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21297, Skills.MINING), COPPER_ORE_29(21284, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21296, Skills.MINING), COPPER_ORE_30(21286, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21298, Skills.MINING), COPPER_ORE_31(29231, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 29219, Skills.MINING), COPPER_ORE_32(29230, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 29218, Skills.MINING), COPPER_ORE_33(29232, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 29220, Skills.MINING), COPPER_ORE_34(31082, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37650, Skills.MINING), COPPER_ORE_35(31081, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37649, Skills.MINING), COPPER_ORE_36(31080, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37639, Skills.MINING), COPPER_ORE_37(37647, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37650, Skills.MINING), COPPER_ORE_38(37646, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37649, Skills.MINING), COPPER_ORE_39(37645, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37639, Skills.MINING), COPPER_ORE_40(37637, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37639, Skills.MINING), COPPER_ORE_41(37688, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21298, Skills.MINING), COPPER_ORE_42(37686, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21296, Skills.MINING), COPPER_ORE_43(37687, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21297, Skills.MINING), COPPER_ORE_44(3042, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 450, Skills.MINING), + COPPER_ORE_0(2090, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 450, Skills.MINING), + COPPER_ORE_1(2091, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 452, Skills.MINING), + COPPER_ORE_2(4976, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 4994, Skills.MINING), + COPPER_ORE_3(4977, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 4995, Skills.MINING), + COPPER_ORE_4(4978, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 4996, Skills.MINING), + COPPER_ORE_5(9710, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 18954, Skills.MINING), + COPPER_ORE_6(9709, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 32448, Skills.MINING), + COPPER_ORE_7(9708, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 32447, Skills.MINING), + COPPER_ORE_8(11960, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11555, Skills.MINING), + COPPER_ORE_9(11961, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11556, Skills.MINING), + COPPER_ORE_10(11962, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11557, Skills.MINING), + COPPER_ORE_11(11937, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11553, Skills.MINING), + COPPER_ORE_12(11936, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11552, Skills.MINING), + COPPER_ORE_13(11938, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 11554, Skills.MINING), + COPPER_ORE_14(12746, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 450, Skills.MINING), + COPPER_ORE_15(14906, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 14894, Skills.MINING), + COPPER_ORE_16(14907, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 14895, Skills.MINING), + COPPER_ORE_17(20448, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20445, Skills.MINING), + COPPER_ORE_18(20451, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20445, Skills.MINING), + COPPER_ORE_19(20446, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20443, Skills.MINING), + COPPER_ORE_20(20447, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20444, Skills.MINING), + COPPER_ORE_21(20408, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 20407, Skills.MINING), + COPPER_ORE_22(18993, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19005, Skills.MINING), + COPPER_ORE_23(18992, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19004, Skills.MINING), + COPPER_ORE_24(19007, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19016, Skills.MINING), + COPPER_ORE_25(19006, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19021, Skills.MINING), + COPPER_ORE_26(18991, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19003, Skills.MINING), + COPPER_ORE_27(19008, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 19017, Skills.MINING), + COPPER_ORE_28(21285, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21297, Skills.MINING), + COPPER_ORE_29(21284, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21296, Skills.MINING), + COPPER_ORE_30(21286, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21298, Skills.MINING), + COPPER_ORE_31(29231, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 29219, Skills.MINING), + COPPER_ORE_32(29230, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 29218, Skills.MINING), + COPPER_ORE_33(29232, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 29220, Skills.MINING), + COPPER_ORE_34(31082, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37650, Skills.MINING), + COPPER_ORE_35(31081, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37649, Skills.MINING), + COPPER_ORE_36(31080, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37639, Skills.MINING), + COPPER_ORE_37(37647, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37650, Skills.MINING), + COPPER_ORE_38(37646, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37649, Skills.MINING), + COPPER_ORE_39(37645, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37639, Skills.MINING), + COPPER_ORE_40(37637, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 37639, Skills.MINING), + COPPER_ORE_41(37688, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21298, Skills.MINING), + COPPER_ORE_42(37686, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21296, Skills.MINING), + COPPER_ORE_43(37687, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 21297, Skills.MINING), + COPPER_ORE_44(3042, 1, 0.05, 4 | 8 << 16, 17.5, 436, 1, "copper rocks", null, 450, Skills.MINING), /** * Tin ore (Mining). */ - TIN_ORE_0(2094, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 450, Skills.MINING), TIN_ORE_1(2095, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 452, Skills.MINING), TIN_ORE_2(3043, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 450, Skills.MINING), TIN_ORE_3(4979, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 4994, Skills.MINING), TIN_ORE_4(4980, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 4995, Skills.MINING), TIN_ORE_5(4981, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 4996, Skills.MINING), TIN_ORE_6(11957, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11555, Skills.MINING), TIN_ORE_7(11958, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11556, Skills.MINING), TIN_ORE_8(11959, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11557, Skills.MINING), TIN_ORE_9(11934, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11553, Skills.MINING), TIN_ORE_10(11935, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11554, Skills.MINING), TIN_ORE_11(11933, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11552, Skills.MINING), TIN_ORE_12(14902, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 14894, Skills.MINING), TIN_ORE_13(14903, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 14895, Skills.MINING), TIN_ORE_14(18995, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19004, Skills.MINING), TIN_ORE_15(18994, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19003, Skills.MINING), TIN_ORE_16(18996, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19005, Skills.MINING), TIN_ORE_17(19025, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19016, Skills.MINING), TIN_ORE_18(19024, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19021, Skills.MINING), TIN_ORE_19(19026, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19017, Skills.MINING), TIN_ORE_20(21293, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21296, Skills.MINING), TIN_ORE_21(21295, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21298, Skills.MINING), TIN_ORE_22(21294, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21297, Skills.MINING), TIN_ORE_23(29227, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 29218, Skills.MINING), TIN_ORE_24(29229, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 29220, Skills.MINING), TIN_ORE_25(29228, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 29219, Skills.MINING), TIN_ORE_26(31079, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37650, Skills.MINING), TIN_ORE_27(31078, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37649, Skills.MINING), TIN_ORE_28(31077, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37639, Skills.MINING), TIN_ORE_29(37644, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37650, Skills.MINING), TIN_ORE_30(37643, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37649, Skills.MINING), TIN_ORE_31(37642, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37639, Skills.MINING), TIN_ORE_32(37638, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37639, Skills.MINING), TIN_ORE_33(37685, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21298, Skills.MINING), + TIN_ORE_0(2094, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 450, Skills.MINING), + TIN_ORE_1(2095, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 452, Skills.MINING), + TIN_ORE_2(3043, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 450, Skills.MINING), + TIN_ORE_3(4979, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 4994, Skills.MINING), + TIN_ORE_4(4980, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 4995, Skills.MINING), + TIN_ORE_5(4981, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 4996, Skills.MINING), + TIN_ORE_6(11957, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11555, Skills.MINING), + TIN_ORE_7(11958, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11556, Skills.MINING), + TIN_ORE_8(11959, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11557, Skills.MINING), + TIN_ORE_9(11934, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11553, Skills.MINING), + TIN_ORE_10(11935, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11554, Skills.MINING), + TIN_ORE_11(11933, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 11552, Skills.MINING), + TIN_ORE_12(14902, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 14894, Skills.MINING), + TIN_ORE_13(14903, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 14895, Skills.MINING), + TIN_ORE_14(18995, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19004, Skills.MINING), + TIN_ORE_15(18994, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19003, Skills.MINING), + TIN_ORE_16(18996, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19005, Skills.MINING), + TIN_ORE_17(19025, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19016, Skills.MINING), + TIN_ORE_18(19024, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19021, Skills.MINING), + TIN_ORE_19(19026, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 19017, Skills.MINING), + TIN_ORE_20(21293, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21296, Skills.MINING), + TIN_ORE_21(21295, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21298, Skills.MINING), + TIN_ORE_22(21294, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21297, Skills.MINING), + TIN_ORE_23(29227, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 29218, Skills.MINING), + TIN_ORE_24(29229, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 29220, Skills.MINING), + TIN_ORE_25(29228, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 29219, Skills.MINING), + TIN_ORE_26(31079, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37650, Skills.MINING), + TIN_ORE_27(31078, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37649, Skills.MINING), + TIN_ORE_28(31077, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37639, Skills.MINING), + TIN_ORE_29(37644, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37650, Skills.MINING), + TIN_ORE_30(37643, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37649, Skills.MINING), + TIN_ORE_31(37642, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37639, Skills.MINING), + TIN_ORE_32(37638, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 37639, Skills.MINING), + TIN_ORE_33(37685, 1, 0.05, 4 | 8 << 16, 17.5, 438, 1, "tin rocks", null, 21298, Skills.MINING), /** * Rune/Pure essence (Mining). @@ -121,33 +273,192 @@ public enum SkillingResource { /** * Clay (Mining). */ - CLAY_0(2109, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 452, Skills.MINING), CLAY_1(2108, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 450, Skills.MINING), CLAY_2(9712, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 32448, Skills.MINING), CLAY_3(9713, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 18954, Skills.MINING), CLAY_4(9711, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 32447, Skills.MINING), CLAY_5(10949, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 10945, Skills.MINING), CLAY_6(11190, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 21297, Skills.MINING), CLAY_7(11191, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 21298, Skills.MINING), CLAY_8(11189, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 21296, Skills.MINING), CLAY_9(12942, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 4995, Skills.MINING), CLAY_10(12943, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 4996, Skills.MINING), CLAY_11(12941, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 4994, Skills.MINING), CLAY_12(14904, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 14894, Skills.MINING), CLAY_13(14905, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 14895, Skills.MINING), CLAY_14(15505, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 11557, Skills.MINING), CLAY_15(15504, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 11556, Skills.MINING), CLAY_16(15503, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 11555, Skills.MINING), CLAY_17(20449, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 20443, Skills.MINING), CLAY_18(20450, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 20444, Skills.MINING), CLAY_19(20409, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 20407, Skills.MINING), CLAY_20(32429, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 33400, Skills.MINING), CLAY_21(32430, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 33401, Skills.MINING), CLAY_22(32431, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 33402, Skills.MINING), CLAY_23(31062, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 37639, Skills.MINING), CLAY_24(31063, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 37649, Skills.MINING), CLAY_25(31064, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 37650, Skills.MINING), + CLAY_0(2109, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 452, Skills.MINING), + CLAY_1(2108, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 450, Skills.MINING), + CLAY_2(9712, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 32448, Skills.MINING), + CLAY_3(9713, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 18954, Skills.MINING), + CLAY_4(9711, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 32447, Skills.MINING), + CLAY_5(10949, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 10945, Skills.MINING), + CLAY_6(11190, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 21297, Skills.MINING), + CLAY_7(11191, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 21298, Skills.MINING), + CLAY_8(11189, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 21296, Skills.MINING), + CLAY_9(12942, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 4995, Skills.MINING), + CLAY_10(12943, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 4996, Skills.MINING), + CLAY_11(12941, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 4994, Skills.MINING), + CLAY_12(14904, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 14894, Skills.MINING), + CLAY_13(14905, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 14895, Skills.MINING), + CLAY_14(15505, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 11557, Skills.MINING), + CLAY_15(15504, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 11556, Skills.MINING), + CLAY_16(15503, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 11555, Skills.MINING), + CLAY_17(20449, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 20443, Skills.MINING), + CLAY_18(20450, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 20444, Skills.MINING), + CLAY_19(20409, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 20407, Skills.MINING), + CLAY_20(32429, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 33400, Skills.MINING), + CLAY_21(32430, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 33401, Skills.MINING), + CLAY_22(32431, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 33402, Skills.MINING), + CLAY_23(31062, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 37639, Skills.MINING), + CLAY_24(31063, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 37649, Skills.MINING), + CLAY_25(31064, 1, 0.1, 1 | 1 << 16, 5.0, 434, 1, "clay", null, 37650, Skills.MINING), /** * Limestone. */ - LIMESTONE_0(4027, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12564, Skills.MINING), LIMESTONE_1(4028, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12565, Skills.MINING), LIMESTONE_2(4029, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12566, Skills.MINING), LIMESTONE_3(4030, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12567, Skills.MINING), + LIMESTONE_0(4027, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12564, Skills.MINING), + LIMESTONE_1(4028, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12565, Skills.MINING), + LIMESTONE_2(4029, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12566, Skills.MINING), + LIMESTONE_3(4030, 10, 0.2, 10 | 20 << 16, 26.5, 3211, 1, "limestone", null, 12567, Skills.MINING), /** * Blurite ore. */ - BLURITE_ORE_0(33220, 10, 0.2, 10 | 20 << 16, 17.5, 668, 1, "blurite rocks", null, 33222, Skills.MINING), BLURITE_ORE_1(33221, 10, 0.2, 10 | 20 << 16, 17.5, 668, 1, "blurite rocks", null, 33223, Skills.MINING), + BLURITE_ORE_0(33220, 10, 0.2, 10 | 20 << 16, 17.5, 668, 1, "blurite rocks", null, 33222, Skills.MINING), + BLURITE_ORE_1(33221, 10, 0.2, 10 | 20 << 16, 17.5, 668, 1, "blurite rocks", null, 33223, Skills.MINING), /** * Iron ore. */ - IRON_ORE_0(2092, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 450, Skills.MINING), IRON_ORE_1(2093, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 452, Skills.MINING), IRON_ORE_2(4982, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 4994, Skills.MINING), IRON_ORE_3(4983, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 4995, Skills.MINING), IRON_ORE_4(4984, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 4996, Skills.MINING), IRON_ORE_5(6943, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21296, Skills.MINING), IRON_ORE_6(6944, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21297, Skills.MINING), IRON_ORE_7(9718, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32448, Skills.MINING), IRON_ORE_8(9719, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 18954, Skills.MINING), IRON_ORE_9(9717, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32447, Skills.MINING), IRON_ORE_10(11956, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11557, Skills.MINING), IRON_ORE_11(11954, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11555, Skills.MINING), IRON_ORE_12(11955, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11556, Skills.MINING), IRON_ORE_13(14914, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14895, Skills.MINING), IRON_ORE_14(14913, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14894, Skills.MINING), IRON_ORE_15(14858, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 25373, Skills.MINING), IRON_ORE_16(14857, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 25372, Skills.MINING), IRON_ORE_17(14856, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 25371, Skills.MINING), IRON_ORE_18(14900, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14894, Skills.MINING), IRON_ORE_19(14901, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14895, Skills.MINING), IRON_ORE_20(20423, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20444, Skills.MINING), IRON_ORE_21(20422, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20443, Skills.MINING), IRON_ORE_22(20425, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20407, Skills.MINING), IRON_ORE_23(20424, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20445, Skills.MINING), IRON_ORE_24(19002, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 19005, Skills.MINING), IRON_ORE_25(19001, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 19004, Skills.MINING), IRON_ORE_26(19000, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 19003, Skills.MINING), IRON_ORE_27(21281, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21296, Skills.MINING), IRON_ORE_28(21283, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21298, Skills.MINING), IRON_ORE_29(21282, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21297, Skills.MINING), IRON_ORE_30(29221, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 29218, Skills.MINING), IRON_ORE_31(29223, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 29220, Skills.MINING), IRON_ORE_32(29222, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 29219, Skills.MINING), IRON_ORE_33(32441, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 33400, Skills.MINING), IRON_ORE_34(32443, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 33402, Skills.MINING), IRON_ORE_35(32442, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 33401, Skills.MINING), IRON_ORE_36(32452, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32448, Skills.MINING), IRON_ORE_37(32451, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32447, Skills.MINING), IRON_ORE_38(31073, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 37650, Skills.MINING), IRON_ORE_39(31072, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 37649, Skills.MINING), IRON_ORE_40(31071, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 37639, Skills.MINING), IRON_ORE_41(37307, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11552, Skills.MINING), IRON_ORE_42(37309, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11554, Skills.MINING), IRON_ORE_43(37308, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11553, Skills.MINING), + IRON_ORE_0(2092, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 450, Skills.MINING), + IRON_ORE_1(2093, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 452, Skills.MINING), + IRON_ORE_2(4982, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 4994, Skills.MINING), + IRON_ORE_3(4983, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 4995, Skills.MINING), + IRON_ORE_4(4984, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 4996, Skills.MINING), + IRON_ORE_5(6943, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21296, Skills.MINING), + IRON_ORE_6(6944, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21297, Skills.MINING), + IRON_ORE_7(9718, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32448, Skills.MINING), + IRON_ORE_8(9719, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 18954, Skills.MINING), + IRON_ORE_9(9717, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32447, Skills.MINING), + IRON_ORE_10(11956, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11557, Skills.MINING), + IRON_ORE_11(11954, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11555, Skills.MINING), + IRON_ORE_12(11955, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11556, Skills.MINING), + IRON_ORE_13(14914, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14895, Skills.MINING), + IRON_ORE_14(14913, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14894, Skills.MINING), + IRON_ORE_15(14858, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 25373, Skills.MINING), + IRON_ORE_16(14857, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 25372, Skills.MINING), + IRON_ORE_17(14856, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 25371, Skills.MINING), + IRON_ORE_18(14900, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14894, Skills.MINING), + IRON_ORE_19(14901, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 14895, Skills.MINING), + IRON_ORE_20(20423, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20444, Skills.MINING), + IRON_ORE_21(20422, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20443, Skills.MINING), + IRON_ORE_22(20425, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20407, Skills.MINING), + IRON_ORE_23(20424, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 20445, Skills.MINING), + IRON_ORE_24(19002, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 19005, Skills.MINING), + IRON_ORE_25(19001, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 19004, Skills.MINING), + IRON_ORE_26(19000, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 19003, Skills.MINING), + IRON_ORE_27(21281, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21296, Skills.MINING), + IRON_ORE_28(21283, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21298, Skills.MINING), + IRON_ORE_29(21282, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 21297, Skills.MINING), + IRON_ORE_30(29221, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 29218, Skills.MINING), + IRON_ORE_31(29223, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 29220, Skills.MINING), + IRON_ORE_32(29222, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 29219, Skills.MINING), + IRON_ORE_33(32441, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 33400, Skills.MINING), + IRON_ORE_34(32443, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 33402, Skills.MINING), + IRON_ORE_35(32442, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 33401, Skills.MINING), + IRON_ORE_36(32452, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32448, Skills.MINING), + IRON_ORE_37(32451, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 32447, Skills.MINING), + IRON_ORE_38(31073, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 37650, Skills.MINING), + IRON_ORE_39(31072, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 37649, Skills.MINING), + IRON_ORE_40(31071, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 37639, Skills.MINING), + IRON_ORE_41(37307, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11552, Skills.MINING), + IRON_ORE_42(37309, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11554, Skills.MINING), + IRON_ORE_43(37308, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 11553, Skills.MINING), IRON_ORE_49(42034, 15, 0.2, 15 | 25 << 16, 35.0, 440, 1, "iron rocks", null, 450, Skills.MINING), + /** * Silver ore. */ - SILVER_ORE_0(2101, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 452, Skills.MINING), SILVER_ORE_1(2100, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 450, Skills.MINING), SILVER_ORE_2(6945, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21296, Skills.MINING), SILVER_ORE_3(6946, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21297, Skills.MINING), SILVER_ORE_4(9716, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 18954, Skills.MINING), SILVER_ORE_5(9714, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32447, Skills.MINING), SILVER_ORE_6(9715, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32448, Skills.MINING), SILVER_ORE_7(11188, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21298, Skills.MINING), SILVER_ORE_8(11186, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21296, Skills.MINING), SILVER_ORE_9(11187, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21297, Skills.MINING), SILVER_ORE_10(15581, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14834, Skills.MINING), SILVER_ORE_11(15580, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14833, Skills.MINING), SILVER_ORE_12(15579, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14832, Skills.MINING), SILVER_ORE_13(16998, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14915, Skills.MINING), SILVER_ORE_14(16999, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14916, Skills.MINING), SILVER_ORE_15(17007, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14915, Skills.MINING), SILVER_ORE_16(17000, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 31061, Skills.MINING), SILVER_ORE_17(17009, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 31061, Skills.MINING), SILVER_ORE_18(17008, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14916, Skills.MINING), SILVER_ORE_19(17385, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32447, Skills.MINING), SILVER_ORE_20(17387, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 18954, Skills.MINING), SILVER_ORE_21(17386, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32448, Skills.MINING), SILVER_ORE_22(29225, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 29219, Skills.MINING), SILVER_ORE_23(29224, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 29218, Skills.MINING), SILVER_ORE_24(29226, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 29220, Skills.MINING), SILVER_ORE_25(32445, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 33401, Skills.MINING), SILVER_ORE_26(32444, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 33400, Skills.MINING), SILVER_ORE_27(32446, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 33402, Skills.MINING), SILVER_ORE_28(31075, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 37649, Skills.MINING), SILVER_ORE_29(31074, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 37639, Skills.MINING), SILVER_ORE_30(31076, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 37650, Skills.MINING), SILVER_ORE_31(37305, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11553, Skills.MINING), SILVER_ORE_32(37304, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11552, Skills.MINING), SILVER_ORE_33(37306, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11554, Skills.MINING), SILVER_ORE_34(37670, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11552, Skills.MINING), SILVER_ORE_35(11948, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11555, Skills.MINING), SILVER_ORE_36(11949, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11556, Skills.MINING), SILVER_ORE_37(11950, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11557, Skills.MINING), + SILVER_ORE_0(2101, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 452, Skills.MINING), + SILVER_ORE_1(2100, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 450, Skills.MINING), + SILVER_ORE_2(6945, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21296, Skills.MINING), + SILVER_ORE_3(6946, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21297, Skills.MINING), + SILVER_ORE_4(9716, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 18954, Skills.MINING), + SILVER_ORE_5(9714, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32447, Skills.MINING), + SILVER_ORE_6(9715, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32448, Skills.MINING), + SILVER_ORE_7(11188, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21298, Skills.MINING), + SILVER_ORE_8(11186, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21296, Skills.MINING), + SILVER_ORE_9(11187, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 21297, Skills.MINING), + SILVER_ORE_10(15581, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14834, Skills.MINING), + SILVER_ORE_11(15580, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14833, Skills.MINING), + SILVER_ORE_12(15579, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14832, Skills.MINING), + SILVER_ORE_13(16998, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14915, Skills.MINING), + SILVER_ORE_14(16999, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14916, Skills.MINING), + SILVER_ORE_15(17007, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14915, Skills.MINING), + SILVER_ORE_16(17000, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 31061, Skills.MINING), + SILVER_ORE_17(17009, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 31061, Skills.MINING), + SILVER_ORE_18(17008, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 14916, Skills.MINING), + SILVER_ORE_19(17385, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32447, Skills.MINING), + SILVER_ORE_20(17387, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 18954, Skills.MINING), + SILVER_ORE_21(17386, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 32448, Skills.MINING), + SILVER_ORE_22(29225, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 29219, Skills.MINING), + SILVER_ORE_23(29224, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 29218, Skills.MINING), + SILVER_ORE_24(29226, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 29220, Skills.MINING), + SILVER_ORE_25(32445, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 33401, Skills.MINING), + SILVER_ORE_26(32444, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 33400, Skills.MINING), + SILVER_ORE_27(32446, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 33402, Skills.MINING), + SILVER_ORE_28(31075, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 37649, Skills.MINING), + SILVER_ORE_29(31074, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 37639, Skills.MINING), + SILVER_ORE_30(31076, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 37650, Skills.MINING), + SILVER_ORE_31(37305, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11553, Skills.MINING), + SILVER_ORE_32(37304, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11552, Skills.MINING), + SILVER_ORE_33(37306, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11554, Skills.MINING), + SILVER_ORE_34(37670, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11552, Skills.MINING), + SILVER_ORE_35(11948, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11555, Skills.MINING), + SILVER_ORE_36(11949, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11556, Skills.MINING), + SILVER_ORE_37(11950, 20, 0.3, 100 | 200 << 16, 40.0, 442, 1, "silver rocks", null, 11557, Skills.MINING), /** * Coal. */ - COAL_0(2097, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 452, Skills.MINING), COAL_1(2096, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 450, Skills.MINING), COAL_2(4985, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 4994, Skills.MINING), COAL_3(4986, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 4995, Skills.MINING), COAL_4(4987, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 4996, Skills.MINING), COAL_5(4676, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 450, Skills.MINING), COAL_6(10948, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 10944, Skills.MINING), COAL_7(11964, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11556, Skills.MINING), COAL_8(11965, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11557, Skills.MINING), COAL_9(11963, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11555, Skills.MINING), COAL_10(11932, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11554, Skills.MINING), COAL_11(11930, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11552, Skills.MINING), COAL_12(11931, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11553, Skills.MINING), COAL_13(15246, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 15249, Skills.MINING), COAL_14(15247, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 15250, Skills.MINING), COAL_15(15248, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 15251, Skills.MINING), COAL_16(14852, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 25373, Skills.MINING), COAL_17(14851, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 25372, Skills.MINING), COAL_18(14850, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 25371, Skills.MINING), COAL_19(20410, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20443, Skills.MINING), COAL_20(20411, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20444, Skills.MINING), COAL_21(20412, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20445, Skills.MINING), COAL_22(20413, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20407, Skills.MINING), COAL_23(18999, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 19005, Skills.MINING), COAL_24(18998, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 19004, Skills.MINING), COAL_25(18997, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 19003, Skills.MINING), COAL_26(21287, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21296, Skills.MINING), COAL_27(21289, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21298, Skills.MINING), COAL_28(21288, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21297, Skills.MINING), COAL_29(23565, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21298, Skills.MINING), COAL_30(23564, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21297, Skills.MINING), COAL_31(23563, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21296, Skills.MINING), COAL_32(29215, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 29218, Skills.MINING), COAL_33(29217, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 29220, Skills.MINING), COAL_34(29216, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 29219, Skills.MINING), COAL_35(32426, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 33400, Skills.MINING), COAL_36(32427, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 33401, Skills.MINING), COAL_37(32428, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 33402, Skills.MINING), COAL_38(32450, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 32448, Skills.MINING), COAL_39(32449, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 32447, Skills.MINING), COAL_40(31068, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 37639, Skills.MINING), COAL_41(31069, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 37649, Skills.MINING), COAL_42(31070, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 37650, Skills.MINING), COAL_43(31168, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 14833, Skills.MINING), COAL_44(31169, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 14834, Skills.MINING), COAL_45(31167, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 14832, Skills.MINING), COAL_46(37699, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21298, Skills.MINING), COAL_47(37698, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21297, Skills.MINING), COAL_48(37697, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21296, Skills.MINING), + COAL_0(2097, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 452, Skills.MINING), + COAL_1(2096, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 450, Skills.MINING), + COAL_2(4985, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 4994, Skills.MINING), + COAL_3(4986, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 4995, Skills.MINING), + COAL_4(4987, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 4996, Skills.MINING), + COAL_5(4676, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 450, Skills.MINING), + COAL_6(10948, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 10944, Skills.MINING), + COAL_7(11964, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11556, Skills.MINING), + COAL_8(11965, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11557, Skills.MINING), + COAL_9(11963, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11555, Skills.MINING), + COAL_10(11932, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11554, Skills.MINING), + COAL_11(11930, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11552, Skills.MINING), + COAL_12(11931, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 11553, Skills.MINING), + COAL_13(15246, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 15249, Skills.MINING), + COAL_14(15247, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 15250, Skills.MINING), + COAL_15(15248, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 15251, Skills.MINING), + COAL_16(14852, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 25373, Skills.MINING), + COAL_17(14851, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 25372, Skills.MINING), + COAL_18(14850, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 25371, Skills.MINING), + COAL_19(20410, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20443, Skills.MINING), + COAL_20(20411, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20444, Skills.MINING), + COAL_21(20412, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20445, Skills.MINING), + COAL_22(20413, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 20407, Skills.MINING), + COAL_23(18999, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 19005, Skills.MINING), + COAL_24(18998, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 19004, Skills.MINING), + COAL_25(18997, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 19003, Skills.MINING), + COAL_26(21287, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21296, Skills.MINING), + COAL_27(21289, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21298, Skills.MINING), + COAL_28(21288, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21297, Skills.MINING), + COAL_29(23565, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21298, Skills.MINING), + COAL_30(23564, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21297, Skills.MINING), + COAL_31(23563, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21296, Skills.MINING), + COAL_32(29215, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 29218, Skills.MINING), + COAL_33(29217, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 29220, Skills.MINING), + COAL_34(29216, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 29219, Skills.MINING), + COAL_35(32426, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 33400, Skills.MINING), + COAL_36(32427, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 33401, Skills.MINING), + COAL_37(32428, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 33402, Skills.MINING), + COAL_38(32450, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 32448, Skills.MINING), + COAL_39(32449, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 32447, Skills.MINING), + COAL_40(31068, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 37639, Skills.MINING), + COAL_41(31069, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 37649, Skills.MINING), + COAL_42(31070, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 37650, Skills.MINING), + COAL_43(31168, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 14833, Skills.MINING), + COAL_44(31169, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 14834, Skills.MINING), + COAL_45(31167, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 14832, Skills.MINING), + COAL_46(37699, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21298, Skills.MINING), + COAL_47(37698, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21297, Skills.MINING), + COAL_48(37697, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 21296, Skills.MINING), COAL_49(42035, 30, 0.4, 50 | 100 << 16, 50.0, 453, 1, "coal", null, 452, Skills.MINING), + /** * Sandstone. */ @@ -156,8 +467,43 @@ public enum SkillingResource { /** * Gold ore. */ - GOLD_ORE_0(2099, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 452, Skills.MINING), GOLD_ORE_1(2098, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 450, Skills.MINING), GOLD_ORE_2(2611, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21298, Skills.MINING), GOLD_ORE_3(2610, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21297, Skills.MINING), GOLD_ORE_4(2609, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21296, Skills.MINING), GOLD_ORE_5(9722, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 18954, Skills.MINING), GOLD_ORE_6(9720, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 32447, Skills.MINING), GOLD_ORE_7(9721, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 32448, Skills.MINING), GOLD_ORE_8(11183, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21296, Skills.MINING), GOLD_ORE_9(11184, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21297, Skills.MINING), GOLD_ORE_10(11185, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21298, Skills.MINING), GOLD_ORE_11(11952, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11556, Skills.MINING), GOLD_ORE_12(11953, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11557, Skills.MINING), GOLD_ORE_13(11951, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11555, Skills.MINING), GOLD_ORE_14(15578, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14834, Skills.MINING), GOLD_ORE_15(15577, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14833, Skills.MINING), GOLD_ORE_16(15576, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14832, Skills.MINING), GOLD_ORE_17(17002, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14916, Skills.MINING), GOLD_ORE_18(17003, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 31061, Skills.MINING), GOLD_ORE_19(17001, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14915, Skills.MINING), GOLD_ORE_20(21291, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21297, Skills.MINING), GOLD_ORE_21(21290, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21296, Skills.MINING), GOLD_ORE_22(21292, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21298, Skills.MINING), GOLD_ORE_23(32433, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 33401, Skills.MINING), GOLD_ORE_24(32432, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 33400, Skills.MINING), GOLD_ORE_25(32434, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 33402, Skills.MINING), GOLD_ORE_26(31065, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 37639, Skills.MINING), GOLD_ORE_27(31066, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 37649, Skills.MINING), GOLD_ORE_28(31067, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 37650, Skills.MINING), GOLD_ORE_29(37311, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11553, Skills.MINING), GOLD_ORE_30(37310, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11552, Skills.MINING), GOLD_ORE_31(37312, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11554, Skills.MINING), GOLD_ORE_32(37471, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 15249, Skills.MINING), GOLD_ORE_33(37473, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 15251, Skills.MINING), GOLD_ORE_34(37472, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 15250, Skills.MINING), - GOLD_ORE_49(42033, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 452, Skills.MINING), + GOLD_ORE_0(2099, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 452, Skills.MINING), + GOLD_ORE_1(2098, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 450, Skills.MINING), + GOLD_ORE_2(2611, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21298, Skills.MINING), + GOLD_ORE_3(2610, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21297, Skills.MINING), + GOLD_ORE_4(2609, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21296, Skills.MINING), + GOLD_ORE_5(9722, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 18954, Skills.MINING), + GOLD_ORE_6(9720, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 32447, Skills.MINING), + GOLD_ORE_7(9721, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 32448, Skills.MINING), + GOLD_ORE_8(11183, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21296, Skills.MINING), + GOLD_ORE_9(11184, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21297, Skills.MINING), + GOLD_ORE_10(11185, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21298, Skills.MINING), + GOLD_ORE_11(11952, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11556, Skills.MINING), + GOLD_ORE_12(11953, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11557, Skills.MINING), + GOLD_ORE_13(11951, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11555, Skills.MINING), + GOLD_ORE_14(15578, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14834, Skills.MINING), + GOLD_ORE_15(15577, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14833, Skills.MINING), + GOLD_ORE_16(15576, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14832, Skills.MINING), + GOLD_ORE_17(17002, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14916, Skills.MINING), + GOLD_ORE_18(17003, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 31061, Skills.MINING), + GOLD_ORE_19(17001, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 14915, Skills.MINING), + GOLD_ORE_20(21291, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21297, Skills.MINING), + GOLD_ORE_21(21290, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21296, Skills.MINING), + GOLD_ORE_22(21292, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 21298, Skills.MINING), + GOLD_ORE_23(32433, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 33401, Skills.MINING), + GOLD_ORE_24(32432, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 33400, Skills.MINING), + GOLD_ORE_25(32434, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 33402, Skills.MINING), + GOLD_ORE_26(31065, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 37639, Skills.MINING), + GOLD_ORE_27(31066, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 37649, Skills.MINING), + GOLD_ORE_28(31067, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 37650, Skills.MINING), + GOLD_ORE_29(37311, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11553, Skills.MINING), + GOLD_ORE_30(37310, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11552, Skills.MINING), + GOLD_ORE_31(37312, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 11554, Skills.MINING), + GOLD_ORE_32(37471, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 15249, Skills.MINING), + GOLD_ORE_33(37473, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 15251, Skills.MINING), + GOLD_ORE_34(37472, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 15250, Skills.MINING), + GOLD_ORE_49(42033, 40, 0.6, 100 | 200 << 16, 65.0, 444, 1, "gold rocks", null, 452, Skills.MINING), + /** * Granite. */ @@ -171,8 +517,51 @@ public enum SkillingResource { /** * Mithril ore. */ - MITHRIL_ORE_0(2103, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 452, Skills.MINING), MITHRIL_ORE_1(2102, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 450, Skills.MINING), MITHRIL_ORE_2(4988, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 4994, Skills.MINING), MITHRIL_ORE_3(4989, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 4995, Skills.MINING), MITHRIL_ORE_4(4990, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 4996, Skills.MINING), MITHRIL_ORE_5(11943, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11553, Skills.MINING), MITHRIL_ORE_6(11942, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11552, Skills.MINING), MITHRIL_ORE_7(11945, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11555, Skills.MINING), MITHRIL_ORE_8(11944, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11554, Skills.MINING), MITHRIL_ORE_9(11947, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11557, Skills.MINING), MITHRIL_ORE_10(11946, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11556, Skills.MINING), MITHRIL_ORE_11(14855, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 25373, Skills.MINING), MITHRIL_ORE_12(14854, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 25372, Skills.MINING), MITHRIL_ORE_13(14853, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 25371, Skills.MINING), MITHRIL_ORE_14(16687, 50, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 450, Skills.MINING), MITHRIL_ORE_15(20421, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20407, Skills.MINING), MITHRIL_ORE_16(20420, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20445, Skills.MINING), MITHRIL_ORE_17(20419, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20444, Skills.MINING), MITHRIL_ORE_18(20418, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20443, Skills.MINING), MITHRIL_ORE_19(19012, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 19021, Skills.MINING), MITHRIL_ORE_20(19013, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 19016, Skills.MINING), MITHRIL_ORE_21(19014, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 19017, Skills.MINING), MITHRIL_ORE_22(21278, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21296, Skills.MINING), MITHRIL_ORE_23(21279, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21297, Skills.MINING), MITHRIL_ORE_24(21280, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21298, Skills.MINING), MITHRIL_ORE_25(25369, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 10586, Skills.MINING), MITHRIL_ORE_26(25368, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 10585, Skills.MINING), MITHRIL_ORE_27(25370, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 10587, Skills.MINING), MITHRIL_ORE_28(29236, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 29218, Skills.MINING), MITHRIL_ORE_29(29237, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 29219, Skills.MINING), MITHRIL_ORE_30(29238, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 29220, Skills.MINING), MITHRIL_ORE_31(32439, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 33401, Skills.MINING), MITHRIL_ORE_32(32438, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 33400, Skills.MINING), MITHRIL_ORE_33(32440, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 33402, Skills.MINING), MITHRIL_ORE_34(31087, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 37649, Skills.MINING), MITHRIL_ORE_35(31086, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 37639, Skills.MINING), MITHRIL_ORE_36(31088, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 37650, Skills.MINING), MITHRIL_ORE_37(31170, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 14832, Skills.MINING), MITHRIL_ORE_38(31171, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 14833, Skills.MINING), MITHRIL_ORE_39(31172, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 14834, Skills.MINING), MITHRIL_ORE_40(37692, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21296, Skills.MINING), MITHRIL_ORE_41(37693, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21297, Skills.MINING), MITHRIL_ORE_42(37694, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21298, Skills.MINING), + MITHRIL_ORE_0(2103, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 452, Skills.MINING), + MITHRIL_ORE_1(2102, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 450, Skills.MINING), + MITHRIL_ORE_2(4988, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 4994, Skills.MINING), + MITHRIL_ORE_3(4989, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 4995, Skills.MINING), + MITHRIL_ORE_4(4990, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 4996, Skills.MINING), + MITHRIL_ORE_5(11943, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11553, Skills.MINING), + MITHRIL_ORE_6(11942, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11552, Skills.MINING), + MITHRIL_ORE_7(11945, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11555, Skills.MINING), + MITHRIL_ORE_8(11944, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11554, Skills.MINING), + MITHRIL_ORE_9(11947, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11557, Skills.MINING), + MITHRIL_ORE_10(11946, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 11556, Skills.MINING), + MITHRIL_ORE_11(14855, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 25373, Skills.MINING), + MITHRIL_ORE_12(14854, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 25372, Skills.MINING), + MITHRIL_ORE_13(14853, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 25371, Skills.MINING), + MITHRIL_ORE_14(16687, 50, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 450, Skills.MINING), + MITHRIL_ORE_15(20421, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20407, Skills.MINING), + MITHRIL_ORE_16(20420, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20445, Skills.MINING), + MITHRIL_ORE_17(20419, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20444, Skills.MINING), + MITHRIL_ORE_18(20418, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 20443, Skills.MINING), + MITHRIL_ORE_19(19012, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 19021, Skills.MINING), + MITHRIL_ORE_20(19013, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 19016, Skills.MINING), + MITHRIL_ORE_21(19014, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 19017, Skills.MINING), + MITHRIL_ORE_22(21278, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21296, Skills.MINING), + MITHRIL_ORE_23(21279, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21297, Skills.MINING), + MITHRIL_ORE_24(21280, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21298, Skills.MINING), + MITHRIL_ORE_25(25369, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 10586, Skills.MINING), + MITHRIL_ORE_26(25368, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 10585, Skills.MINING), + MITHRIL_ORE_27(25370, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 10587, Skills.MINING), + MITHRIL_ORE_28(29236, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 29218, Skills.MINING), + MITHRIL_ORE_29(29237, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 29219, Skills.MINING), + MITHRIL_ORE_30(29238, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 29220, Skills.MINING), + MITHRIL_ORE_31(32439, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 33401, Skills.MINING), + MITHRIL_ORE_32(32438, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 33400, Skills.MINING), + MITHRIL_ORE_33(32440, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 33402, Skills.MINING), + MITHRIL_ORE_34(31087, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 37649, Skills.MINING), + MITHRIL_ORE_35(31086, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 37639, Skills.MINING), + MITHRIL_ORE_36(31088, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 37650, Skills.MINING), + MITHRIL_ORE_37(31170, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 14832, Skills.MINING), + MITHRIL_ORE_38(31171, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 14833, Skills.MINING), + MITHRIL_ORE_39(31172, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 14834, Skills.MINING), + MITHRIL_ORE_40(37692, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21296, Skills.MINING), + MITHRIL_ORE_41(37693, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21297, Skills.MINING), + MITHRIL_ORE_42(37694, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 21298, Skills.MINING), MITHRIL_ORE_49(42036, 55, 0.70, 200 | 400 << 16, 80.0, 447, 1, "mithril rocks", null, 452, Skills.MINING), + /** * Adamantite ore. */ @@ -181,8 +570,8 @@ public enum SkillingResource { ADAMANTITE_ORE_2(4991, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 4994, Skills.MINING), ADAMANTITE_ORE_3(4992, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 4995, Skills.MINING), ADAMANTITE_ORE_4(4993, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 4996, Skills.MINING), - ADAMANTITE_ORE_5(11941, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 11554, Skills.MINING) - , ADAMANTITE_ORE_6(11940, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 11553, Skills.MINING), + ADAMANTITE_ORE_5(11941, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 11554, Skills.MINING), + ADAMANTITE_ORE_6(11940, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 11553, Skills.MINING), ADAMANTITE_ORE_7(11939, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 11552, Skills.MINING), ADAMANTITE_ORE_8(14864, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 25373, Skills.MINING), ADAMANTITE_ORE_9(14863, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 25372, Skills.MINING), @@ -217,16 +606,32 @@ public enum SkillingResource { ADAMANTITE_ORE_38(37691, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 21298, Skills.MINING), ADAMANTITE_ORE_39(42037, 70, 0.85, 400 | 800 << 16, 95.0, 449, 1, "adamant rocks", null, 452, Skills.MINING), - /** * Runite ore. */ - RUNITE_ORE_0(2107, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 452, Skills.MINING), RUNITE_ORE_1(2106, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 450, Skills.MINING), RUNITE_ORE_2(6669, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21296, Skills.MINING), RUNITE_ORE_3(6671, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21298, Skills.MINING), RUNITE_ORE_4(6670, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21297, Skills.MINING), RUNITE_ORE_5(14861, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 25373, Skills.MINING), RUNITE_ORE_6(14860, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 25372, Skills.MINING), RUNITE_ORE_7(14859, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 25371, Skills.MINING), RUNITE_ORE_8(33079, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 33401, Skills.MINING), RUNITE_ORE_9(33078, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 33400, Skills.MINING), RUNITE_ORE_10(37208, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21296, Skills.MINING), RUNITE_ORE_11(37465, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 15249, Skills.MINING), RUNITE_ORE_12(37466, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 15250, Skills.MINING), RUNITE_ORE_13(37467, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 15251, Skills.MINING), RUNITE_ORE_14(37695, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21297, Skills.MINING), RUNITE_ORE_15(37696, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21298, Skills.MINING), + RUNITE_ORE_0(2107, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 452, Skills.MINING), + RUNITE_ORE_1(2106, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 450, Skills.MINING), + RUNITE_ORE_2(6669, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21296, Skills.MINING), + RUNITE_ORE_3(6671, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21298, Skills.MINING), + RUNITE_ORE_4(6670, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21297, Skills.MINING), + RUNITE_ORE_5(14861, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 25373, Skills.MINING), + RUNITE_ORE_6(14860, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 25372, Skills.MINING), + RUNITE_ORE_7(14859, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 25371, Skills.MINING), + RUNITE_ORE_8(33079, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 33401, Skills.MINING), + RUNITE_ORE_9(33078, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 33400, Skills.MINING), + RUNITE_ORE_10(37208, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21296, Skills.MINING), + RUNITE_ORE_11(37465, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 15249, Skills.MINING), + RUNITE_ORE_12(37466, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 15250, Skills.MINING), + RUNITE_ORE_13(37467, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 15251, Skills.MINING), + RUNITE_ORE_14(37695, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21297, Skills.MINING), + RUNITE_ORE_15(37696, 85, 0.95, 1250 | 2500 << 16, 125.0, 451, 1, "runite rocks", null, 21298, Skills.MINING), /** * Gem rocks. */ - GEM_ROCK_0(23567, 40, 0.95, 166 | 175 << 16, 65, 1625, 1, "gem rocks", null, 21297, Skills.MINING), GEM_ROCK_1(23566, 40, 0.95, 166 | 175 << 16, 65, 1625, 1, "gem rocks", null, 21296, Skills.MINING), GEM_ROCK_2(23568, 40, 0.95, 166 | 175 << 16, 65, 1625, 1, "gem rocks", null, 21298, Skills.MINING); + GEM_ROCK_0(23567, 40, 0.95, 166 | 175 << 16, 65, 1625, 1, "gem rocks", null, 21297, Skills.MINING), + GEM_ROCK_1(23566, 40, 0.95, 166 | 175 << 16, 65, 1625, 1, "gem rocks", null, 21296, Skills.MINING), + GEM_ROCK_2(23568, 40, 0.95, 166 | 175 << 16, 65, 1625, 1, "gem rocks", null, 21298, Skills.MINING); /** * The resources mapping. diff --git a/Server/src/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.java b/Server/src/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.java index cb50dbe29..61f22188f 100644 --- a/Server/src/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/runecrafting/RuneCraftPulse.java @@ -3,6 +3,7 @@ package org.crandor.game.content.skill.free.runecrafting; import org.crandor.game.container.impl.EquipmentContainer; import org.crandor.game.content.skill.SkillPulse; import org.crandor.game.content.skill.Skills; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.impl.Animator.Priority; import org.crandor.game.node.entity.player.Player; import org.crandor.game.node.entity.player.info.portal.Perks; @@ -175,6 +176,7 @@ public final class RuneCraftPulse extends SkillPulse { if (altar == Altar.COSMIC && i.getAmount() == 56 && !player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).isComplete(2, 1)) { player.getAchievementDiaryManager().updateTask(player, DiaryType.LUMBRIDGE, 2, 1, true); } + player.getInventory().add(i); Perks.addDouble(player, i); player.getSkills().addExperience(Skills.RUNECRAFTING, rune.getExperience() * amount, true); } @@ -193,7 +195,9 @@ public final class RuneCraftPulse extends SkillPulse { } } player.getSkills().addExperience(Skills.RUNECRAFTING, rune.getExperience() * 2, true); - Perks.addDouble(player, rune.getRune()); + Item runeItem = rune.getRune(); + player.getInventory().add(runeItem); + Perks.addDouble(player, runeItem); } } } @@ -300,9 +304,14 @@ public final class RuneCraftPulse extends SkillPulse { i++; } } + if (player.hasPerk(Perks.RUNESTONE_KNOWLEDGE) && (altar == Altar.DEATH || altar == Altar.LAW || altar == Altar.COSMIC || altar == Altar.BLOOD || altar == Altar.NATURE)) { i *= 2; } + + if(GlobalEvent.GOLDEN_ESSENCE.isActive()) { + i *= 3; + } return i != 0 ? i : 1; } diff --git a/Server/src/org/crandor/game/content/skill/free/smithing/SmithingPulse.java b/Server/src/org/crandor/game/content/skill/free/smithing/SmithingPulse.java index befee256e..181eb508b 100644 --- a/Server/src/org/crandor/game/content/skill/free/smithing/SmithingPulse.java +++ b/Server/src/org/crandor/game/content/skill/free/smithing/SmithingPulse.java @@ -62,7 +62,7 @@ public class SmithingPulse extends SkillPulse { player.getDialogueInterpreter().sendDialogue("You need a hammer to work the metal with."); return false; } - if (TutorialSession.getExtension(player).getStage() <= TutorialSession.MAX_STAGE && node.getId() != Bars.BRONZE_DAGGER.getProduct()) { + if (TutorialSession.getExtension(player).getStage() < TutorialSession.MAX_STAGE && node.getId() != Bars.BRONZE_DAGGER.getProduct()) { return false; } return true; @@ -80,7 +80,9 @@ public class SmithingPulse extends SkillPulse { return false; } player.getInventory().remove(new Item(bar.getBarType().getBarType(), bar.getSmithingType().getRequired())); - Perks.addDouble(player, (new Item(node.getId(), bar.getSmithingType().getProductAmount()))); + final Item item = new Item(node.getId(), bar.getSmithingType().getProductAmount()); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.SMITHING, bar.getBarType().getExperience() * bar.getSmithingType().getRequired(), true); String message = StringUtils.isPlusN(ItemDefinition.forId(bar.getProduct()).getName().toLowerCase()) == true ? "an" : "a"; player.getPacketDispatch().sendMessage("You hammer the " + bar.getBarType().getBarName().toLowerCase().replace("smithing", "") + "and make " + message + " " + ItemDefinition.forId(bar.getProduct()).getName().toLowerCase() + "."); diff --git a/Server/src/org/crandor/game/content/skill/member/farming/tool/SpadePulse.java b/Server/src/org/crandor/game/content/skill/member/farming/tool/SpadePulse.java index 242214c03..96466cbfa 100644 --- a/Server/src/org/crandor/game/content/skill/member/farming/tool/SpadePulse.java +++ b/Server/src/org/crandor/game/content/skill/member/farming/tool/SpadePulse.java @@ -178,7 +178,9 @@ public final class SpadePulse extends ToolAction { * @return {@code True} if harvested. */ private boolean harvestPatch() { - Perks.addDouble(player, wrapper.getNode().getProduct()); + final Item item = wrapper.getNode().getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.FARMING, wrapper.getNode().getExperiences()[1], true); wrapper.getCycle().setHarvestAmount(wrapper.getCycle().getHarvestAmount() - 1); if (wrapper.getCycle().getHarvestAmount() < 1) { diff --git a/Server/src/org/crandor/game/content/skill/member/fletching/FletchingPulse.java b/Server/src/org/crandor/game/content/skill/member/fletching/FletchingPulse.java index 4dbc6da9a..1edb91ab3 100644 --- a/Server/src/org/crandor/game/content/skill/member/fletching/FletchingPulse.java +++ b/Server/src/org/crandor/game/content/skill/member/fletching/FletchingPulse.java @@ -64,7 +64,9 @@ public final class FletchingPulse extends SkillPulse { return false; } if (player.getInventory().remove(fletch.getType().getLog())) { - Perks.addDouble(player, fletch.getProduct()); + final Item item = fletch.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.FLETCHING, fletch.getExperience(), true); String message = getMessage(); player.getPacketDispatch().sendMessage(message); diff --git a/Server/src/org/crandor/game/content/skill/member/herblore/HerbTarPulse.java b/Server/src/org/crandor/game/content/skill/member/herblore/HerbTarPulse.java index 6629d6130..111001e7e 100644 --- a/Server/src/org/crandor/game/content/skill/member/herblore/HerbTarPulse.java +++ b/Server/src/org/crandor/game/content/skill/member/herblore/HerbTarPulse.java @@ -84,7 +84,9 @@ public final class HerbTarPulse extends SkillPulse { return false; } if (player.getInventory().containsItem(SWAMP_TAR) && player.getInventory().containsItem(tar.getIngredient()) && player.getInventory().remove(SWAMP_TAR) && player.getInventory().remove(tar.getIngredient())) { - Perks.addDouble(player, new Item(tar.getTar().getId(), 15)); + final Item item = new Item(tar.getTar().getId(), 15); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.HERBLORE, tar.getExperience(), true); player.getPacketDispatch().sendMessage("You add the " + tar.getIngredient().getName().toLowerCase().replace("clean", "").trim() + " to the swamp tar."); } else { diff --git a/Server/src/org/crandor/game/content/skill/member/herblore/HerblorePulse.java b/Server/src/org/crandor/game/content/skill/member/herblore/HerblorePulse.java index 46f688179..81673840d 100644 --- a/Server/src/org/crandor/game/content/skill/member/herblore/HerblorePulse.java +++ b/Server/src/org/crandor/game/content/skill/member/herblore/HerblorePulse.java @@ -115,7 +115,9 @@ public final class HerblorePulse extends SkillPulse { player.animate(ANIMATION); } if ((player.getInventory().containsItem(potion.getBase()) && player.getInventory().containsItem(potion.getIngredient())) && player.getInventory().remove(potion.getBase(), potion.getIngredient())) { - Perks.addDouble(player, potion.getProduct()); + final Item item = potion.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getPacketDispatch().sendMessage("You put the" + StringUtils.formatDisplayName(potion.getIngredient().getName().replace("Clean", "")) + " Leaf into the vial of water."); if (cycles++ == 3) { player.animate(ANIMATION); @@ -129,7 +131,9 @@ public final class HerblorePulse extends SkillPulse { */ public void handleFinished() { if ((player.getInventory().containsItem(potion.getBase()) && player.getInventory().containsItem(potion.getIngredient())) && player.getInventory().remove(potion.getBase(), potion.getIngredient())) { - Perks.addDouble(player, potion.getProduct()); + final Item item = potion.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.HERBLORE, potion.getExperience(), true); player.getPacketDispatch().sendMessage("You mix the " + potion.getIngredient().getName().toLowerCase() + " into your potion."); player.animate(ANIMATION); diff --git a/Server/src/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.java b/Server/src/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.java index 84685b6da..cacc5c9d4 100644 --- a/Server/src/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.java +++ b/Server/src/org/crandor/game/content/skill/member/hunter/bnet/BNetNode.java @@ -74,7 +74,9 @@ public class BNetNode { public void reward(Player player, NPC npc) { if (!isBareHand(player)) { if (player.getInventory().remove(getJar())) { - Perks.addDouble(player, getReward()); + final Item item = getReward(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.HUNTER, getExperience(player), true); } } else { diff --git a/Server/src/org/crandor/game/content/skill/member/summoning/SummoningCreator.java b/Server/src/org/crandor/game/content/skill/member/summoning/SummoningCreator.java index 757d1ce01..1bd68f9ac 100644 --- a/Server/src/org/crandor/game/content/skill/member/summoning/SummoningCreator.java +++ b/Server/src/org/crandor/game/content/skill/member/summoning/SummoningCreator.java @@ -168,7 +168,9 @@ public final class SummoningCreator { } } if (player.getInventory().remove(type.getRequired())) { - Perks.addDouble(player, type.getProduct()); + final Item item = type.getProduct(); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(Skills.SUMMONING, type.getExperience(), true); } } diff --git a/Server/src/org/crandor/game/content/skill/member/thieving/Pickpocket.java b/Server/src/org/crandor/game/content/skill/member/thieving/Pickpocket.java index 1d864c39e..18078dc8e 100644 --- a/Server/src/org/crandor/game/content/skill/member/thieving/Pickpocket.java +++ b/Server/src/org/crandor/game/content/skill/member/thieving/Pickpocket.java @@ -2,6 +2,7 @@ package org.crandor.game.content.skill.member.thieving; import org.crandor.game.content.global.ttrail.ClueLevel; import org.crandor.game.content.global.ttrail.ClueScrollPlugin; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.npc.NPC; import org.crandor.game.node.entity.npc.drop.DropFrequency; import org.crandor.game.node.entity.player.Player; @@ -15,7 +16,28 @@ import org.crandor.tools.RandomFunction; * @date 22/10/2013 */ public enum Pickpocket { - MAN(new int[] { 1, 2, 3, 4, 5, 6, 16, 24, 170, 3915 }, 1, new int[][] { { 995, 3 }, { 995, 3 } }, 8, 1), FARMER(new int[] { 7, 1757, 1758 }, 10, new int[][] { { 995, 9 }, { 5318, 1 } }, 14.5, 1), FEMALE_HAM_MEMBER(new int[] { 1715 }, 15, new int[][] { { 995, 50 }, { 995, 100 }, { 995, 20 }, { 995, 3 }, { 590, 1 }, { 1511, 1 }, { 1621, 1 }, { 1623, 1 }, { 1625, 1 }, { 1269, 1 }, { 321, 1 }, { 2138, 1 }, { 4298, 1 }, { 4300, 1 }, { 4302, 1 }, { 4304, 1 }, { 4306, 1 }, { 4308, 1 }, { 697, 1 }, { 4310, 1 }, { 1267, 1 }, { 1353, 1 }, { 199, 1 }, { 453, 1 }, { 201, 1 }, { 203, 1 }, { 205, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 686, 1 }, { 688, 1 } }, 18.5, 1, "You attempt to pick the woman's pocket...", "You pick the woman's pocket.", "You fail to pick the woman's pocket.", "What do you think you're doing?"), MALE_HAM_MEMBER(new int[] { 1714 }, 20, new int[][] { { 590, 1 }, { 1621, 1 }, { 1623, 1 }, { 1625, 1 }, { 1269, 1 }, { 321, 1 }, { 2138, 1 }, { 4298, 1 }, { 4300, 1 }, { 4302, 1 }, { 4304, 1 }, { 4306, 1 }, { 4308, 1 }, { 4310, 1 }, { 1267, 1 }, { 1353, 1 }, { 199, 1 }, { 201, 1 }, { 203, 1 }, { 205, 1 }, { 686, 1 }, { 697, 1 }, { 453, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 314, 1 }, { 8866, 1 }, { 8867, 1 }, { 8868, 1 }, { 8869, 1 } }, 22.5, 3, "You attempt to pick the man's pocket...", "You pick the man's pocket.", "You fail to pick the man's pocket.", "What do you think you're doing?"), WARRIOR(new int[] { 15, 18 }, 25, new int[][] { { 995, 18 } }, 26, 2), ROGUE(new int[] { 187, 2267, 2268, 2269, 8122 }, 32, new int[][] { { 995, 25 }, { 995, 40 }, { 1993, 1 }, { 556, 2 }, { 1219, 1 }, { 1523, 1 }, { 1944 } }, 35.5, 2), CAVE_GOBLIN(new int[] { 5752, 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768 }, 36, new int[][] { { 995, 30, 1 }, { 590, 1 }, { 4522, 1 }, { 4544, 1 }, { 596, 1 }, { 1939, 1 }, { 441, 4, 1 }, { 441, 1 }, { 10981, 1 } }, 40, 2), MASTER_FARMER(new int[] { 2234, 2235 }, 38, new int[][] { { 5096, 1 }, { 5097, 1 }, { 5098, 1 }, { 5099, 1 }, { 5100, 1 }, { 5101, 1 }, { 5102, 1 }, { 5103, 1 }, { 5104, 1 }, { 5105, 1 }, { 5106, 1 }, { 5291, 1 }, { 5292, 1 }, { 5293, 1 }, { 5294, 1 }, { 5295, 1 }, { 5296, 1 }, { 5297, 1 }, { 5298, 1 }, { 5299, 1 }, { 5300, 1 }, { 5301, 1 }, { 5302, 1 }, { 5304, 1 }, { 5305, 1 }, { 5306, 1 }, { 5307, 1 }, { 5308, 1 }, { 5309, 1 }, { 5310, 1 }, { 5311, 1 }, { 5312, 1 }, { 5318, 1 }, { 5319, 1 }, { 5320, 1 }, { 5321, 1 }, { 5322, 1 }, { 5323, 1 }, { 5324, 1 }, { 5296, 1 }, { 5297, 1 }, { 5298, 1 }, { 5299, 1 }, { 5300, 1 }, { 5301, 1 }, { 5302, 1 }, { 5303, 1 }, { 5304, 1 } }, 43, 3, "You attempt to pick the " + "@name" + "'s pocket...", "You pick the " + "@name" + "'s pocket.", "You fail to pick the " + "@name" + "'s pocket.", "Cor blimey mate, what are ye doing in me pockets?"), GUARD(new int[] { 9, 32, 206, 296, 297, 298, 299, 344, 345, 346, 368, 678, 812, 9, 32, 296, 297, 298, 299, 2699, 2700, 2701, 2702, 2703, 3228, 3229, 3230, 3231, 3232, 3233, 3241, 3407, 3408, 4307, 4308, 4309, 4310, 4311, 5919, 5920, }, 40, new int[][] { { 995, 30 }, { 995, 25 } }, 46.5, 2), FREMENIK_CITIZEN(new int[] { 2462 }, 45, new int[][] { { 995, 40 } }, 65, 2), BEARDED_BANDIT(new int[] { 1880, 1881, 6174 }, 45, new int[][] { { 995, 40 } }, 65, 5), DESERT_BANDIT(new int[] { 1926, 1921 }, 53, new int[][] { { 995, 30 }, { 995, 30 } }, 79.5, 3), KNIGHT_OF_ADROUGNE(new int[] { 23, 26 }, 55, new int[][] { { 995, 50 } }, 84.3, 3), YANILLE_WATCHMAN(new int[] { 34 }, 65, new int[][] { { 995, 60 } }, 137.5, 5), MENAPHITE_THUG(new int[] { 1905 }, 65, new int[][] { { 995, 60 } }, 137.5, 5), PALADIN(new int[] { 20, 2256 }, 70, new int[][] { { 995, 80 }, { 562, 2 } }, 151.75, 3), MONKEY_KNIFE_FIGHTER(new int[] { 13195, 13212, 13213 }, 70, new int[][] { { 995, 1, 1 }, { 995, 50, 1 }, { 869, 4, 1 }, { 874, 2, 1 }, { 379, 1 }, { 1331, 1 }, { 1333, 1 }, { 4587, 1 } }, 150, 1), GNOME(new int[] { 66, 67, 68, 168, 169, 2249, 2250, 2251, 2371, 2649, 2650, 6002, 6004 }, 75, new int[][] { { 995, 300, 1 }, { 557, 1 }, { 444, 1 }, { 569, 1 }, { 2150, 1 }, { 2162, 1 } }, 198.5, 1), HERO(new int[] { 21 }, 80, new int[][] { { 995, 200, 1 }, { 995, 300, 1 }, { 560, 2, 1 }, { 565, 1 }, { 569, 1 }, { 1601, 1 }, { 444, 1 }, { 1993, 1 } }, 273.3, 5), ELF(new int[] {}, 85, new int[][] { { 995, 250 }, { 995, 350 }, { 995, 300 } }, 353, 5), DWARF_TRADER(new int[] { 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126 }, 90, new int[][] { { 995, 100, 1 }, { 995, 400, 1 }, { 2350, 1 }, { 2352, 1 }, { 2354, 1 }, { 2360, 1 }, { 2362, 1 }, { 2364, 1 }, { 437, 1 }, { 439, 1 }, { 441, 1 }, { 448, 1 }, { 450, 1 }, { 452, 1 }, { 454, 1 } }, 556.5, 1), MARTIN_THE_MASTER_GARDENER(new int[] { 3299 }, 38, new int[][] { new int[] { 5318, 1, 2, 3, 4 }, new int[] { 5319, 1, 2, 3 }, new int[] { 5324, 1, 2, 3 }, new int[] { 5322, 1, 2 }, new int[] { 5320, 1 }, new int[] { 5323, 1 }, new int[] { 5321, 1 }, new int[] { 5096, 1 }, new int[] { 5097, 1 }, new int[] { 5099, 1, 2 }, new int[] { 5100, 1 }, new int[] { 5308, 1, 2 }, new int[] { 5306, 1, 2, 3 }, new int[] { 5101, 1 }, new int[] { 5102, 1 }, new int[] { 5103, 1 }, new int[] { 5104, 1, 2 }, new int[] { 5105, 1 }, new int[] { 5106, 1 }, new int[] { 5291, 1 }, new int[] { 5292, 1 }, new int[] { 5293, 1 }, new int[] { 5294, 1 }, new int[] { 5295, 1 } }, 43, 3, "You attempt to pick Martin's pocket.", "You pick Martin's pocket.", "You fail to pick Martin's pocket.", "Cor blimey mate, what are ye doing in me pockets?"); + MAN(new int[] { 1, 2, 3, 4, 5, 6, 16, 24, 170, 3915 }, 1, new int[][] { { 995, 3 } }, 8, 1), + FARMER(new int[] { 7, 1757, 1758 }, 10, new int[][] { { 995, 9 }, { 5318, 1 } }, 14.5, 1), + FEMALE_HAM_MEMBER(new int[] { 1715 }, 15, new int[][] { { 995, 50 }, { 995, 100 }, { 995, 20 }, { 995, 3 }, { 590, 1 }, { 1511, 1 }, { 1621, 1 }, { 1623, 1 }, { 1625, 1 }, { 1269, 1 }, { 321, 1 }, { 2138, 1 }, { 4298, 1 }, { 4300, 1 }, { 4302, 1 }, { 4304, 1 }, { 4306, 1 }, { 4308, 1 }, { 697, 1 }, { 4310, 1 }, { 1267, 1 }, { 1353, 1 }, { 199, 1 }, { 453, 1 }, { 201, 1 }, { 203, 1 }, { 205, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 686, 1 }, { 688, 1 } }, 18.5, 1, "You attempt to pick the woman's pocket...", "You pick the woman's pocket.", "You fail to pick the woman's pocket.", "What do you think you're doing?"), + MALE_HAM_MEMBER(new int[] { 1714 }, 20, new int[][] { { 590, 1 }, { 1621, 1 }, { 1623, 1 }, { 1625, 1 }, { 1269, 1 }, { 321, 1 }, { 2138, 1 }, { 4298, 1 }, { 4300, 1 }, { 4302, 1 }, { 4304, 1 }, { 4306, 1 }, { 4308, 1 }, { 4310, 1 }, { 1267, 1 }, { 1353, 1 }, { 199, 1 }, { 201, 1 }, { 203, 1 }, { 205, 1 }, { 686, 1 }, { 697, 1 }, { 453, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 688, 1 }, { 314, 1 }, { 8866, 1 }, { 8867, 1 }, { 8868, 1 }, { 8869, 1 } }, 22.5, 3, "You attempt to pick the man's pocket...", "You pick the man's pocket.", "You fail to pick the man's pocket.", "What do you think you're doing?"), + WARRIOR(new int[] { 15, 18 }, 25, new int[][] { { 995, 18 } }, 26, 2), + ROGUE(new int[] { 187, 2267, 2268, 2269, 8122 }, 32, new int[][] { { 995, 25 }, { 995, 40 }, { 1993, 1 }, { 556, 2 }, { 1219, 1 }, { 1523, 1 }, { 1944 } }, 35.5, 2), + CAVE_GOBLIN(new int[] { 5752, 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768 }, 36, new int[][] { { 995, 30, 1 }, { 590, 1 }, { 4522, 1 }, { 4544, 1 }, { 596, 1 }, { 1939, 1 }, { 441, 4, 1 }, { 441, 1 }, { 10981, 1 } }, 40, 2), + MASTER_FARMER(new int[] { 2234, 2235 }, 38, new int[][] { { 5096, 1 }, { 5097, 1 }, { 5098, 1 }, { 5099, 1 }, { 5100, 1 }, { 5101, 1 }, { 5102, 1 }, { 5103, 1 }, { 5104, 1 }, { 5105, 1 }, { 5106, 1 }, { 5291, 1 }, { 5292, 1 }, { 5293, 1 }, { 5294, 1 }, { 5295, 1 }, { 5296, 1 }, { 5297, 1 }, { 5298, 1 }, { 5299, 1 }, { 5300, 1 }, { 5301, 1 }, { 5302, 1 }, { 5304, 1 }, { 5305, 1 }, { 5306, 1 }, { 5307, 1 }, { 5308, 1 }, { 5309, 1 }, { 5310, 1 }, { 5311, 1 }, { 5312, 1 }, { 5318, 1 }, { 5319, 1 }, { 5320, 1 }, { 5321, 1 }, { 5322, 1 }, { 5323, 1 }, { 5324, 1 }, { 5296, 1 }, { 5297, 1 }, { 5298, 1 }, { 5299, 1 }, { 5300, 1 }, { 5301, 1 }, { 5302, 1 }, { 5303, 1 }, { 5304, 1 } }, 43, 3, "You attempt to pick the " + "@name" + "'s pocket...", "You pick the " + "@name" + "'s pocket.", "You fail to pick the " + "@name" + "'s pocket.", "Cor blimey mate, what are ye doing in me pockets?"), + GUARD(new int[] { 9, 32, 206, 296, 297, 298, 299, 344, 345, 346, 368, 678, 812, 9, 32, 296, 297, 298, 299, 2699, 2700, 2701, 2702, 2703, 3228, 3229, 3230, 3231, 3232, 3233, 3241, 3407, 3408, 4307, 4308, 4309, 4310, 4311, 5919, 5920, }, 40, new int[][] { { 995, 30 }, { 995, 25 } }, 46.5, 2), + FREMENIK_CITIZEN(new int[] { 2462 }, 45, new int[][] { { 995, 40 } }, 65, 2), + BEARDED_BANDIT(new int[] { 1880, 1881, 6174 }, 45, new int[][] { { 995, 40 } }, 65, 5), + DESERT_BANDIT(new int[] { 1926, 1921 }, 53, new int[][] { { 995, 30 }, { 995, 30 } }, 79.5, 3), + KNIGHT_OF_ADROUGNE(new int[] { 23, 26 }, 55, new int[][] { { 995, 50 } }, 84.3, 3), + YANILLE_WATCHMAN(new int[] { 34 }, 65, new int[][] { { 995, 60 } }, 137.5, 5), + MENAPHITE_THUG(new int[] { 1905 }, 65, new int[][] { { 995, 60 } }, 137.5, 5), + PALADIN(new int[] { 20, 2256 }, 70, new int[][] { { 995, 80 }, { 562, 2 } }, 151.75, 3), + MONKEY_KNIFE_FIGHTER(new int[] { 13195, 13212, 13213 }, 70, new int[][] { { 995, 1, 1 }, { 995, 50, 1 }, { 869, 4, 1 }, { 874, 2, 1 }, { 379, 1 }, { 1331, 1 }, { 1333, 1 }, { 4587, 1 } }, 150, 1), + GNOME(new int[] { 66, 67, 68, 168, 169, 2249, 2250, 2251, 2371, 2649, 2650, 6002, 6004 }, 75, new int[][] { { 995, 300, 1 }, { 557, 1 }, { 444, 1 }, { 569, 1 }, { 2150, 1 }, { 2162, 1 } }, 198.5, 1), + HERO(new int[] { 21 }, 80, new int[][] { { 995, 200, 1 }, { 995, 300, 1 }, { 560, 2, 1 }, { 565, 1 }, { 569, 1 }, { 1601, 1 }, { 444, 1 }, { 1993, 1 } }, 273.3, 5), + ELF(new int[] {}, 85, new int[][] { { 995, 250 }, { 995, 350 }, { 995, 300 } }, 353, 5), + DWARF_TRADER(new int[] { 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126 }, 90, new int[][] { { 995, 100, 1 }, { 995, 400, 1 }, { 2350, 1 }, { 2352, 1 }, { 2354, 1 }, { 2360, 1 }, { 2362, 1 }, { 2364, 1 }, { 437, 1 }, { 439, 1 }, { 441, 1 }, { 448, 1 }, { 450, 1 }, { 452, 1 }, { 454, 1 } }, 556.5, 1), + MARTIN_THE_MASTER_GARDENER(new int[] { 3299 }, 38, new int[][] { new int[] { 5318, 1, 2, 3, 4 }, new int[] { 5319, 1, 2, 3 }, new int[] { 5324, 1, 2, 3 }, new int[] { 5322, 1, 2 }, new int[] { 5320, 1 }, new int[] { 5323, 1 }, new int[] { 5321, 1 }, new int[] { 5096, 1 }, new int[] { 5097, 1 }, new int[] { 5099, 1, 2 }, new int[] { 5100, 1 }, new int[] { 5308, 1, 2 }, new int[] { 5306, 1, 2, 3 }, new int[] { 5101, 1 }, new int[] { 5102, 1 }, new int[] { 5103, 1 }, new int[] { 5104, 1, 2 }, new int[] { 5105, 1 }, new int[] { 5106, 1 }, new int[] { 5291, 1 }, new int[] { 5292, 1 }, new int[] { 5293, 1 }, new int[] { 5294, 1 }, new int[] { 5295, 1 } }, 43, 3, "You attempt to pick Martin's pocket.", "You pick Martin's pocket.", "You fail to pick Martin's pocket.", "Cor blimey mate, what are ye doing in me pockets?"); /** * The martin rewards. @@ -140,6 +162,7 @@ public enum Pickpocket { if (this == MARTIN_THE_MASTER_GARDENER) { return RandomFunction.getChanceItem(MARTIN_REWARDS).getRandomItem(); } + // 5/250 chance for easy clue scroll? if ((this == FEMALE_HAM_MEMBER || this == MALE_HAM_MEMBER) && RandomFunction.random(250) <= 5 && !player.getTreasureTrailManager().hasClue()) { return ClueScrollPlugin.getClue(ClueLevel.EASY); } @@ -147,7 +170,16 @@ public enum Pickpocket { if (loot.length == 1) { loot = new int[] { loot[0], 1 }; } - return new Item(loot[0], loot[1]); + + + // Calculate any bonus multipliers + int bonusMultiplier = 1; + if (loot[0] == 995) { + if(GlobalEvent.THIEVES_JACKPOT.isActive()) { + bonusMultiplier *= 3; + } + } + return new Item(loot[0], loot[1] * bonusMultiplier); } /** diff --git a/Server/src/org/crandor/game/content/skill/member/thieving/PickpocketPulse.java b/Server/src/org/crandor/game/content/skill/member/thieving/PickpocketPulse.java index 03c196acc..9496154b1 100644 --- a/Server/src/org/crandor/game/content/skill/member/thieving/PickpocketPulse.java +++ b/Server/src/org/crandor/game/content/skill/member/thieving/PickpocketPulse.java @@ -12,6 +12,7 @@ import org.crandor.game.node.entity.player.info.portal.Perks; import org.crandor.game.node.entity.player.link.audio.Audio; import org.crandor.game.node.entity.player.link.diary.DiaryType; import org.crandor.game.node.entity.state.EntityState; +import org.crandor.game.node.item.Item; import org.crandor.game.world.GameWorld; import org.crandor.game.world.update.flag.context.Animation; import org.crandor.tools.RandomFunction; @@ -101,7 +102,9 @@ public final class PickpocketPulse extends SkillPulse { player.getAchievementDiaryManager().getDiary(DiaryType.LUMBRIDGE).updateTask(player, 1, 6, true); } player.getSkills().addExperience(Skills.THIEVING, type.getExperience(), true); - Perks.addDouble(player, type.getRandomLoot(player), true); + Item loot = type.getRandomLoot(player); + player.getInventory().add(loot); + Perks.addDouble(player, loot, true); player.getPacketDispatch().sendMessage(type.getRewardMessage().replace("@name", node.getName().toLowerCase())); } else { node.animate(NPC_ANIM); diff --git a/Server/src/org/crandor/game/content/skill/member/thieving/Stall.java b/Server/src/org/crandor/game/content/skill/member/thieving/Stall.java index e30d87cfe..0cbce9968 100644 --- a/Server/src/org/crandor/game/content/skill/member/thieving/Stall.java +++ b/Server/src/org/crandor/game/content/skill/member/thieving/Stall.java @@ -11,9 +11,27 @@ import org.crandor.tools.RandomFunction; * @author 'Vexia */ public enum Stall { - VEGETABLE_STALL(new int[] { 4706, 4708, }, 2, new int[][] { { 1957, 1 }, { 1965, 1 }, { 1942, 1 } }, "some vegetables from the vegetable's merchant stall.", 10, 634, 10), BAKER_STALL(new int[] { 2561, 6163, 34384 }, 5, new int[][] { { 1891, 1 }, { 2309, 1 }, { 1901, 1 } }, "a cake from the baker's stall.", 16, 634, 11), CRAFTING_STALL(new int[] { 6166 }, 5, new int[][] { { 1755, 1 }, { 1592, 1 }, { 1901, 1 }, { 1597, 1 } }, "some crafting equipment from the crafting merchant stall", 16, 634, 18), TEA_STALL(new int[] { 635, 6574 }, 5, new int[][] { { 712, 1 } }, "a cup of tea.", 16, 634, 10), SILK_STALL(new int[] { 34383, 2560 }, 20, new int[][] { { 950, 1 } }, "some silk from the silk stall.", 24, 634, 10), WINE_STALL(new int[] { 34383, 14011 }, 22, new int[][] { { 1937, 1 }, { 1993, 1 }, { 1987, 1 }, { 1935, 1 }, { 7919, 1 } }, "some wine from the wine stall.", 27, 634, 20), SEED_STALL(new int[] { 7053 }, 27, new int[][] { { 5305, 1 }, { 5306, 1 }, { 5308, 1 }, { 5319, 3 }, { 5318, 2 }, { 5324, 1 }, { 5322, 2 } }, "some seed's from the seed merchant's stall.", 10, 634, 10), FUR_STALL(new int[] { 34387, 2563 }, 35, new int[][] { { 6814, 1 }, { 958, 1 } }, "some fur from the fur stall.", 36, 634, 22), FISH_STAILL(new int[] { 4277, 4705, 4707 }, 42, new int[][] { { 331, 1 }, { 359, 1 }, { 377, 1 } }, "some fish from the fish stall.", 42, 634, 22), CROSSBOW_STALL(new int[] { 4277, 4705, 4707 }, 49, new int[][] { { 9375, 3 }, { 9420, 1 }, { 9440, 1 } }, "something from the crossbow stall.", 52, 634, 22), SILVER_STALL(new int[] { 2565, 6164, 34382 }, 50, new int[][] { { 442, 1 } }, "some silver from the silver stall.", 54, 634, 50), SPICE_STALL(new int[] { 2564, 34386 }, 65, new int[][] { { 2007, 1 } }, "some spice from the spice stall.", 81, 634, 100), MAGIC_STALL(new int[] { 4705, 4707 }, 65, new int[][] { { 556, 1 }, { 557, 1 }, { 554, 1 }, { 555, 1 }, { 563, 1 } }, "some runes from the rune's stall.", 100, 634, 100), SCIMITAR_STALL(new int[] { 4705, 4707 }, 65, new int[][] { { 1323, 1 } }, "a scimitar from the scimitar stall.", 100, 634, 100), GEM_STALL(new int[] { 2562, 6162, 34385 }, 75, new int[][] { { 1623, 1 } }, "a gem from the gem stall.", 160, 634, 340), + VEGETABLE_STALL(new int[] { 4706, 4708, }, 2, new int[][] { { 1957, 1 }, { 1965, 1 }, { 1942, 1 } }, "some vegetables from the vegetable's merchant stall.", 10, 634, 10), + BAKER_STALL(new int[] { 2561, 6163, 34384 }, 5, new int[][] { { 1891, 1 }, { 2309, 1 }, { 1901, 1 } }, "a cake from the baker's stall.", 16, 634, 11), + CRAFTING_STALL(new int[] { 6166 }, 5, new int[][] { { 1755, 1 }, { 1592, 1 }, { 1901, 1 }, { 1597, 1 } }, "some crafting equipment from the crafting merchant stall", 16, 634, 18), + TEA_STALL(new int[] { 635, 6574 }, 5, new int[][] { { 712, 1 } }, "a cup of tea.", 16, 634, 10), + SILK_STALL(new int[] { 34383, 2560 }, 20, new int[][] { { 950, 1 } }, "some silk from the silk stall.", 24, 634, 10), + WINE_STALL(new int[] { 34383, 14011 }, 22, new int[][] { { 1937, 1 }, { 1993, 1 }, { 1987, 1 }, { 1935, 1 }, { 7919, 1 } }, "some wine from the wine stall.", 27, 634, 20), + SEED_STALL(new int[] { 7053 }, 27, new int[][] { { 5305, 1 }, { 5306, 1 }, { 5308, 1 }, { 5319, 3 }, { 5318, 2 }, { 5324, 1 }, { 5322, 2 } }, "some seed's from the seed merchant's stall.", 10, 634, 10), + FUR_STALL(new int[] { 34387, 2563 }, 35, new int[][] { { 6814, 1 }, { 958, 1 } }, "some fur from the fur stall.", 36, 634, 22), + FISH_STAILL(new int[] { 4277, 4705, 4707 }, 42, new int[][] { { 331, 1 }, { 359, 1 }, { 377, 1 } }, "some fish from the fish stall.", 42, 634, 22), + CROSSBOW_STALL(new int[] { 4277, 4705, 4707 }, 49, new int[][] { { 9375, 3 }, { 9420, 1 }, { 9440, 1 } }, "something from the crossbow stall.", 52, 634, 22), + SILVER_STALL(new int[] { 2565, 6164, 34382 }, 50, new int[][] { { 442, 1 } }, "some silver from the silver stall.", 54, 634, 50), + SPICE_STALL(new int[] { 2564, 34386 }, 65, new int[][] { { 2007, 1 } }, "some spice from the spice stall.", 81, 634, 100), + MAGIC_STALL(new int[] { 4705, 4707 }, 65, new int[][] { { 556, 1 }, { 557, 1 }, { 554, 1 }, { 555, 1 }, { 563, 1 } }, "some runes from the rune's stall.", 100, 634, 100), + SCIMITAR_STALL(new int[] { 4705, 4707 }, 65, new int[][] { { 1323, 1 } }, "a scimitar from the scimitar stall.", 100, 634, 100), + GEM_STALL(new int[] { 2562, 6162, 34385 }, 75, new int[][] { { 1623, 1 } }, "a gem from the gem stall.", 160, 634, 340), // ape atoll: - SCIMITAR_APE_STALL(new int[] { 4878 }, 65, new int[][] { { 1323, 1 } }, "a scimitar from the scimitar stall.", 100, 4797, 120), MAGIC_APE_STALL(new int[] { 4877 }, 65, new int[][] { { 556, 1 }, { 557, 1 }, { 554, 1 }, { 555, 1 }, { 563, 1 } }, "some runes from the magic stall.", 100, 4797, 120), MONEKY_GENERAL(new int[] { 4876 }, 5, new int[][] { { 1931, 1 }, { 2347, 1 }, { 590, 1 } }, "a general item from the general stall.", 16, 4797, 10), MONKEY_FOOD(new int[] { 4875 }, 5, new int[][] { { 1963, 1 } }, "a banana from the food stall.", 16, 4797, 10), CRAFTING_APE(new int[] { 4874 }, 5, new int[][] { { 1755, 1 }, { 1592, 1 }, { 1901, 1 }, { 1597, 1 } }, "a crafting item from the crafting stall.", 16, 4797, 10); + SCIMITAR_APE_STALL(new int[] { 4878 }, 65, new int[][] { { 1323, 1 } }, "a scimitar from the scimitar stall.", 100, 4797, 120), + MAGIC_APE_STALL(new int[] { 4877 }, 65, new int[][] { { 556, 1 }, { 557, 1 }, { 554, 1 }, { 555, 1 }, { 563, 1 } }, "some runes from the magic stall.", 100, 4797, 120), + MONEKY_GENERAL(new int[] { 4876 }, 5, new int[][] { { 1931, 1 }, { 2347, 1 }, { 590, 1 } }, "a general item from the general stall.", 16, 4797, 10), + MONKEY_FOOD(new int[] { 4875 }, 5, new int[][] { { 1963, 1 } }, "a banana from the food stall.", 16, 4797, 10), + CRAFTING_APE(new int[] { 4874 }, 5, new int[][] { { 1755, 1 }, { 1592, 1 }, { 1901, 1 }, { 1597, 1 } }, "a crafting item from the crafting stall.", 16, 4797, 10); /** * Constructs a new {@code Stall} {@code Object}. diff --git a/Server/src/org/crandor/game/content/skill/member/thieving/StallThiefPulse.java b/Server/src/org/crandor/game/content/skill/member/thieving/StallThiefPulse.java index 81f43f946..73a7a42d2 100644 --- a/Server/src/org/crandor/game/content/skill/member/thieving/StallThiefPulse.java +++ b/Server/src/org/crandor/game/content/skill/member/thieving/StallThiefPulse.java @@ -96,7 +96,6 @@ public final class StallThiefPulse extends SkillPulse { } final boolean success = success(); if (success) { - final Item item = stall.getRandomLoot(); if (stall == Stall.SILK_STALL) { player.getSavedData().getGlobalData().setSilkSteal(System.currentTimeMillis() + 1800000); } @@ -106,6 +105,8 @@ public final class StallThiefPulse extends SkillPulse { if (node.isActive()) { ObjectBuilder.replace(((GameObject) node), ((GameObject) node).transform(stall.getTemporary()), stall.getDelay()); } + final Item item = stall.getRandomLoot(); + player.getInventory().add(item); Perks.addDouble(player, item, true); player.getSkills().addExperience(Skills.THIEVING, stall.getExperience(), true); if (item.getId() == 1987) { diff --git a/Server/src/org/crandor/game/events/GlobalEvent.java b/Server/src/org/crandor/game/events/GlobalEvent.java index a1b4221a1..f4102271e 100644 --- a/Server/src/org/crandor/game/events/GlobalEvent.java +++ b/Server/src/org/crandor/game/events/GlobalEvent.java @@ -1,30 +1,83 @@ package org.crandor.game.events; -public class GlobalEvent { +import org.crandor.Util; + +public enum GlobalEvent { + ALCHEMY_HELLENISTIC("Receive 2 x coins when using high alchemy"), // Not implemented + GOLDEN_RETRIEVER("All gold dropped by monsters will be automatically banked for you"), // Not implemented + THIEVES_JACKPOT("Receive 3 x more coins when thieving"), + GOLDEN_ESSENCE("Receive 3 x more runes when runecrafting"), + CLONE_FEST("20 clones are been spawned in the wilderness near the mage arena."), // Not implemented + TRY_YOUR_LUCK("Mobs will drop 40% more items when killed"), + CRAZY_SEEDS("Mobs will drop 2 x more seeds when killed"), + CHARMED("Mobs will drop 2 x more charms when killed"), + XP_FEVER("Receive 2 x XP for all skills"), + PLENTY_OF_FISH("Receive 2 x rewards when fishing"), + HARVESTING_DOUBLES("Receive 2 x items harvested with woodcutting or mining"); + + /** + * Represents the object of the altar. + */ + private final String eventName; + + /** + * Represents the object of the altar. + */ + private final String eventDescription; + + /** + * Represents the object of the altar. + */ + private Long remainingTicks; - private String eventName; - private long remainingTicks; + GlobalEvent(final String eventDescription) { + this.eventName = Util.enumToString(this.name());; + this.eventDescription = eventDescription; + this.remainingTicks = 0L; + } - public String getEventName() { + public String getName() { return this.eventName; } - public long getRemainingTicks() { + public String getDescription() { + return this.eventDescription; + } + + public Long getRemainingTicks() { return this.remainingTicks; } - public GlobalEvent(String eventName, long ticks) { - this.eventName = eventName; + public GlobalEvent setRemainingTicks(Long ticks) { this.remainingTicks = ticks; - } - - public GlobalEvent process() { - remainingTicks--; return this; } + public Boolean isActive() { + return this.remainingTicks > 0; + } + + public GlobalEvent tick() { + remainingTicks--; + return this; + } + + // Start/Extend the event public GlobalEvent extend() { - remainingTicks += 6000; + return extend(6000); + } + + public GlobalEvent extend(int ticks) { + remainingTicks += ticks; + return this; + } + + public GlobalEvent start() { + return extend(6000); + } + + public GlobalEvent start(int ticks) { + extend(ticks); return this; } diff --git a/Server/src/org/crandor/game/events/GlobalEventManager.java b/Server/src/org/crandor/game/events/GlobalEventManager.java index 7373cb8b0..86ef854ef 100644 --- a/Server/src/org/crandor/game/events/GlobalEventManager.java +++ b/Server/src/org/crandor/game/events/GlobalEventManager.java @@ -1,5 +1,6 @@ package org.crandor.game.events; +import org.crandor.Util; import org.crandor.game.node.entity.player.Player; import org.crandor.game.system.task.Pulse; import org.crandor.game.world.GameWorld; @@ -7,11 +8,6 @@ import org.crandor.game.world.callback.CallBack; import org.crandor.game.world.repository.Repository; import org.crandor.tools.mysql.Results; -import java.util.HashMap; -import java.util.Iterator; -import java.util.Map; -import java.util.Map.Entry; - /** * Class to handle donated events. * @@ -20,27 +16,12 @@ import java.util.Map.Entry; */ public class GlobalEventManager implements CallBack { - private static Map EVENTS = new HashMap(); - private long tick = 0; - private String lastEvent; - private String currentEvent; + private GlobalEvent lastEvent; + private GlobalEvent currentEvent; public final GlobalEventManager init() { - - try { - - getEvents().put("Alchemy hellenistic", 0L); - getEvents().put("Golden retriever", 0L); - getEvents().put("Harvesting doubles", 0L); - getEvents().put("Thieves jackpot", 0L); - getEvents().put("Golden essence", 0L); - getEvents().put("Clone Fest", 0L); - - } catch (Exception e) { - e.printStackTrace(); - } return this; } @@ -50,26 +31,21 @@ public class GlobalEventManager implements CallBack { @Override public boolean pulse() { - - tick++; - - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - Map.Entry entry = iterator.next(); - if (entry.getValue() > 0) { - entry.setValue(entry.getValue() - 1); - if (entry.getValue() == 3000) - message("You have 30 minutes before " + entry.getKey() + " ends on world " + GameWorld.getSettings().getWorldId() + "."); + for(GlobalEvent event : GlobalEvent.values()){ + Long ticksRemaining = event.getRemainingTicks(); + if (ticksRemaining > 0) { + event.tick(); + --ticksRemaining; + if (ticksRemaining <= 0) + message("The " + event.getName() + " event has now ended."); + else if (ticksRemaining % 3000 == 0) + message("You have " + Math.round(ticksRemaining / 100) + " minutes before the " + event.getName() + " event ends."); - if (entry.getValue() <= 0) { - message("The event " + entry.getKey() + " has now ended on world " + GameWorld.getSettings().getWorldId() + "."); - } } } - if (tick == 50) { + if (tick == 100) { tick = 0; save(); } @@ -81,42 +57,28 @@ public class GlobalEventManager implements CallBack { } - public void reActivate(String name, long time) { - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - Map.Entry entry = iterator.next(); - if (entry.getKey().equalsIgnoreCase(name)) { - entry.setValue(time); - } - } + public void reActivate(GlobalEvent event, long time) { + event.setRemainingTicks(time); } public GlobalEventManager save() { - if (GameWorld.getDatabaseManager().update("server", "DELETE FROM `globalevents` WHERE worldid='" + GameWorld.getSettings().getWorldId() + "'") < 0) - return this; + for(GlobalEvent event : GlobalEvent.values()){ - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - - Map.Entry entry = iterator.next(); - - if (entry.getValue() <= 0) - continue; - StringBuilder query = new StringBuilder(); - query.append("INSERT INTO `globalevents` "); + query.append("INSERT INTO `global_events` "); query.append("(`eventName`,`eventTime`,`worldId`)"); query.append(" VALUES("); - query.append("'" + entry.getKey() + "'").append(","); - query.append("'" + entry.getValue() + "'").append(","); + query.append("'" + event.getName() + "'").append(","); + query.append("'" + event.getRemainingTicks() + "'").append(","); query.append("'" + GameWorld.getSettings().getWorldId() + "'"); query.append(")"); + query.append(" ON DUPLICATE KEY UPDATE "); + query.append("eventTime='" + event.getRemainingTicks() + "'"); + GameWorld.getDatabaseManager().update("server", query.toString()); } @@ -125,17 +87,15 @@ public class GlobalEventManager implements CallBack { public GlobalEventManager load() { try { - Results result = null; - - result = new Results(GameWorld.getDatabaseManager().query("server", "SELECT * FROM `globalevents` WHERE worldid='" + GameWorld.getSettings().getWorldId() + "'")); + Results result = new Results(GameWorld.getDatabaseManager().query("server", "SELECT * FROM `global_events` WHERE worldid='" + GameWorld.getSettings().getWorldId() + "'")); while (!result.empty()) { String eventName = result.string("eventName"); String eventTime = result.string("eventTime"); - reActivate(eventName, Long.valueOf(eventTime)); + GlobalEvent event = getEvent(eventName); + reActivate(event, Long.valueOf(eventTime)); } - } catch(Exception e) { e.printStackTrace(); } @@ -143,183 +103,94 @@ public class GlobalEventManager implements CallBack { } public GlobalEventManager message(String message) { - return message(message, true, ""); + return message(message, true, ""); } public GlobalEventManager message(String message, boolean tag) { - return message(message, tag, ""); + return message(message, tag, ""); } - public GlobalEventManager notify(String message) { - return message(message, true, ""); - } - - public GlobalEventManager notify(String message, boolean tag) { - return message(message, tag, ""); - } - - - - /* - * getEvents().put("Alchemy hellenistic", 0L); - getEvents().put("Golden retriever", 0L); - getEvents().put("Harvesting doubles", 0L); - getEvents().put("Thieves jackpot", 0L); - getEvents().put("Golden essence", 0L); - - */ public GlobalEventManager message(String message, boolean tag, String color) { - /*if (WorldCommunicator.isEnabled()) { - MSPacketRepository.sendWorldMessage((tag ? "[Event Manager] - " : "")+ message); - } else {*/ - for (Player player : Repository.getPlayers()) { - player.getPacketDispatch().sendMessage(color + (tag ? "[Event Manager] - " : "") + message); - } - //} - return this; - - } - - - public GlobalEventManager deactivate(String eventName) { - - if (getEvents().get(eventName) == null) { - System.out.println("Failed to deactivate event " + eventName + "."); - return this; - } - - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - Map.Entry entry = (Map.Entry) iterator.next(); - if (entry.getKey().equalsIgnoreCase(eventName)) { - message(eventName + " has ended. A new event will begin soon."); - entry.setValue(0L); - } + for (Player player : Repository.getPlayers()) { + player.sendMessage(color + (tag ? "[Event Manager] " : "") + message); } return this; } - public GlobalEventManager activate(String eventName, String name) { - - Player p = Repository.getPlayerByDisplay(name); - if (getEvents().get(eventName) == null) { - System.out.println("Failed to activate event " + eventName + "."); - return this; - } - if (p == null && !eventName.equalsIgnoreCase("clone fest")) { - System.out.println("Couldnt activate event; " + name + " couldnt be found."); + public GlobalEventManager deactivate(GlobalEvent event) { + // Only deactivate event if already active + if (!event.isActive()) { return this; } - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - Map.Entry entry = (Map.Entry) iterator.next(); - if (entry.getKey().equalsIgnoreCase(eventName)) { - if (eventName.equalsIgnoreCase("clone fest")) { - notify("The event " + eventName + " is live, clones are located near the mage"); - notify("bank on world " + GameWorld.getSettings().getWorldId() + ".", false); - } else { - if (entry.getValue() != 0) { - message("The event " + eventName + " has been extended for another hour by " + (p == null ? " " : p.getUsername() + " ")); - message("on world " + GameWorld.getSettings().getWorldId() + ".", false); - } else { - message("The event " + eventName + " has been activated by " + (p == null ? " " : p.getUsername() + " ") + "on world " + GameWorld.getSettings().getWorldId() + "."); - } - } - entry.setValue(entry.getValue() + 6000); - } - } + // Event will end in 2 ticks + event.setRemainingTicks(2L); return this; } + public GlobalEventManager activate(GlobalEvent event) { + return activate(event, null, 6000); + } - /* - * getEvents().put("Alchemy hellenistic", 0L); - getEvents().put("Golden retriever", 0L); - getEvents().put("Harvesting doubles", 0L); - getEvents().put("Thieves jackpot", 0L); - getEvents().put("Golden essence", 0L); - - */ + public GlobalEventManager activate(GlobalEvent event, String name) { + return activate(event, name, 6000); + } - public GlobalEventManager activateHourly(String eventName) { - - if (getEvents().get(eventName) == null) { - System.out.println("Failed to activate event " + eventName + "."); - return this; - } - - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - Map.Entry entry = iterator.next(); - if (entry.getKey().equalsIgnoreCase(eventName)) { - message(eventName + " is now active, and will run for an hour!"); - for (Player player : Repository.getPlayers()) { - switch(getCurrentEvent()) { - case "Alchemy hellenistic": - player.getPacketDispatch().sendMessage("This event means you'll receive x2 coins when using high alchemy."); - break; - case "Golden retriever": - player.getPacketDispatch().sendMessage("This event means you'll have all gold dropped by monsters banked for you."); - break; - case "Harvesting doubles": - player.getPacketDispatch().sendMessages("This event means you'll receive x2 items when harvesting with woodcutting, mining", "or fishing."); - break; - case "Thieves jackpot": - player.getPacketDispatch().sendMessages("This event means you'll receive 300% more coins when thieving."); - break; - case "Golden essence": - player.getPacketDispatch().sendMessages("This event means you'll receive x3 more runes than normal when runecrafting."); - break; - case "Clone Fest": - player.getPacketDispatch().sendMessages("This event means 20 clones have been spawned in the wilderness", "near the mage bank."); - break; + public GlobalEventManager activate(GlobalEvent event, String name, int timeToAdd) { + if (timeToAdd <= 0) timeToAdd = 6000; - } - } - entry.setValue(entry.getValue() + 6000); - } + Player player = Repository.getPlayerByDisplay(name); + + StringBuilder message = new StringBuilder(); + message.append("The " + event.getName() + " event has been "); + message.append(event.isActive() ? "extended by" : "activated for"); + message.append(" " + Math.round(timeToAdd / 100) + " minutes"); + if (player != null) { + message.append(" by " + player.getUsername()); } + message.append("."); + + // start the event after building the string + event.start(timeToAdd); + message(message.toString()); + message(event.getDescription(), false, ""); + return this; } - public boolean isActive(String eventName) { - Iterator> iterator = EVENTS.entrySet().iterator(); - - while(iterator.hasNext()) { - Map.Entry entry = (Map.Entry) iterator.next(); - if (entry.getKey().equalsIgnoreCase(eventName)) { - if (entry.getValue() > 0) - return true; - } - } - - return false; + public GlobalEventManager activateHourly(GlobalEvent event) { + event.start(6000); + message(event.getName() + " event is now active, and will run for an hour!"); + message(event.getDescription(), false, ""); + return this; + } + + public boolean isActive(GlobalEvent event) { + return event.isActive(); } public GlobalEventManager alert(Player player) { boolean active = false; - Iterator> i = EVENTS.entrySet().iterator(); - - while(i.hasNext()) { - Map.Entry entry = (Map.Entry) i.next(); - if (entry.getValue() > 0) { - active = true; + + for(GlobalEvent event : GlobalEvent.values()){ + if (event.isActive()) { + active = true; } } - if (active) - player.sendMessage("The following events are active:"); - Iterator> iterator = EVENTS.entrySet().iterator(); - while(iterator.hasNext()) { - Map.Entry entry = (Map.Entry) iterator.next(); - if (entry.getValue() > 0) { - player.sendMessage(" [-] " + entry.getKey() + "."); + if (!active) { + player.sendMessage("No events are currently active."); + return this; + } + + player.sendMessage("The following events are active:"); + + for(GlobalEvent event : GlobalEvent.values()){ + if (event.isActive()) { + player.sendMessage(" [-] " + event.getName() + "."); } } + return this; } @@ -335,24 +206,28 @@ public class GlobalEventManager implements CallBack { return true; } - public static Map getEvents() { - return EVENTS; + public static GlobalEvent getEvent(String name) { + for(GlobalEvent event : GlobalEvent.values()){ + if (event.getName().equalsIgnoreCase(name) || event.name().equalsIgnoreCase(Util.strToEnum(name))) + return event; + } + return null; } - public String getLastEvent() { + public GlobalEvent getLastEvent() { return lastEvent; } - public void setLastEvent(String lastEvent) { - this.lastEvent = lastEvent; + public void setLastEvent(GlobalEvent event) { + this.lastEvent = event; } - public String getCurrentEvent() { + public GlobalEvent getCurrentEvent() { return currentEvent; } - public void setCurrentEvent(String currentEvent) { - this.currentEvent = currentEvent; + public void setCurrentEvent(GlobalEvent event) { + this.currentEvent = event; } diff --git a/Server/src/org/crandor/game/node/entity/npc/drop/NPCDropTables.java b/Server/src/org/crandor/game/node/entity/npc/drop/NPCDropTables.java index cfc381be9..a821873f8 100644 --- a/Server/src/org/crandor/game/node/entity/npc/drop/NPCDropTables.java +++ b/Server/src/org/crandor/game/node/entity/npc/drop/NPCDropTables.java @@ -8,7 +8,7 @@ import org.crandor.game.content.eco.EconomyManagement; import org.crandor.game.content.eco.ge.GrandExchangeDatabase; import org.crandor.game.content.global.Bones; import org.crandor.game.content.skill.Skills; -import org.crandor.game.events.GlobalEventManager; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.Entity; import org.crandor.game.node.entity.npc.NPC; import org.crandor.game.node.entity.player.Player; @@ -93,11 +93,11 @@ public final class NPCDropTables { Player p = looter instanceof Player ? (Player) looter : null; for (ChanceItem item : defaultTable) { int amount = RandomFunction.random(item.getMinimumAmount(), item.getMaximumAmount() + 1); - if (GlobalEventManager.get().isActive("Try your luck")) + if (GlobalEvent.TRY_YOUR_LUCK.isActive()) amount *= 1.4; - if (GlobalEventManager.get().isActive("Crazy Seeds") && ItemDefinition.forId(item.getId()).getName().toLowerCase().contains("seed")) + if (GlobalEvent.CRAZY_SEEDS.isActive() && ItemDefinition.forId(item.getId()).getName().toLowerCase().contains("seed")) amount *= 2; - if (GlobalEventManager.get().isActive("Charmed") && ItemDefinition.forId(item.getId()).getName().toLowerCase().contains("charm")) + if (GlobalEvent.CHARMED.isActive() && ItemDefinition.forId(item.getId()).getName().toLowerCase().contains("charm")) amount *= 2; if (npc.getName().startsWith("Revenant") && item.getName().equalsIgnoreCase("coins")) { break; @@ -181,10 +181,10 @@ public final class NPCDropTables { if (handleBoneCrusher(player, item)) { return; } - if (item.getId() == 995 && player.hasPerk(Perks.COIN_MACHINE) && player.getGlobalData().isEnableCoinMachine() && player.getBank().hasSpaceFor(item)) { + if (item.getId() == 995 && player.getBank().hasSpaceFor(item) && ( player.getGlobalData().isEnableCoinMachine() || GlobalEvent.GOLDEN_RETRIEVER.isActive() )) { item = new Item(995, (int) (item.getAmount() + (item.getAmount() * 0.25))); player.getBank().add(item); - player.sendMessage(" " + item.getAmount() + " X Coins were sent to your bank."); + player.sendMessage(" " + item.getAmount() + " coins were sent to your bank."); return; } if (item.hasItemPlugin() && player != null) { diff --git a/Server/src/org/crandor/game/node/entity/player/ai/AIPlayer.java b/Server/src/org/crandor/game/node/entity/player/ai/AIPlayer.java index f7a7fbaeb..1e0ae7abf 100644 --- a/Server/src/org/crandor/game/node/entity/player/ai/AIPlayer.java +++ b/Server/src/org/crandor/game/node/entity/player/ai/AIPlayer.java @@ -181,8 +181,6 @@ public class AIPlayer extends Player { { int meX = this.getLocation().getX(); int meY = this.getLocation().getY(); - //int meX2 = this.getLocation().getX(); - //System.out.println("local " + meX + " real x? " + meX2 ); ArrayList nodes = new ArrayList(); for (NPC npc : RegionManager.getLocalNpcs(this, range)) { if (npc.getId() == entry) @@ -399,14 +397,12 @@ public class AIPlayer extends Player { * @param uid The player's UID. */ public static void deregister(int uid) { - if (!botMapping.containsKey(uid)) { - System.err.println("Could not deregister AIP#" + uid + ": UID not added to the mapping!"); - return; - } AIPlayer player = botMapping.get(uid); if (player != null) { player.clear(); + return; } + System.err.println("Could not deregister AIP#" + uid + ": UID not added to the mapping!"); } @Override diff --git a/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.java b/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.java index 2fddb1ab9..b726fdf73 100644 --- a/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.java +++ b/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/LowestBot.java @@ -9,30 +9,29 @@ public class LowestBot extends PvMBots{ super(name, l); // TODO Auto-generated constructor stub } - + private int tick = 0; - + @Override - public void tick() - { + public void tick(){ super.tick(); - + + this.tick++; + //Despawn if (this.getSkills().getLifepoints() == 0) //this.teleport(new Location(500, 500)); //Despawning not being delayed causes 3 errors in the console AIPlayer.deregister(this.getUid()); - + //Npc Combat - if (tick == 0) - { + if (this.tick % 10 == 0) { if (!this.inCombat()) AttackNpcsInRadius(this, 5); - this.tick = 10; } - else - this.tick--; - + + if (this.tick == 100) this.tick = 0; + this.eat(329); //this.getPrayer().toggle() } diff --git a/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.java b/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.java index d002db27d..2976be186 100644 --- a/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.java +++ b/Server/src/org/crandor/game/node/entity/player/ai/pvmbots/PvMBots.java @@ -74,8 +74,8 @@ public class PvMBots extends AIPlayer { if (creatures == null) { return false; } - if (!(creatures.isEmpty())) { bot.attack(creatures.get(RandomFunction.getRandom((creatures.size() - 1)))); + if (!creatures.isEmpty()) { return true; } else { creatures = FindTargets(bot, radius); @@ -90,7 +90,9 @@ public class PvMBots extends AIPlayer { @Override public void tick() { - super.tick(); + super.tick(); + + this.tick++; //Despawn if (this.getSkills().getLifepoints() == 0) @@ -99,12 +101,12 @@ public class PvMBots extends AIPlayer { AIPlayer.deregister(this.getUid()); //Npc Combat - if (tick == 0) { - if (!this.inCombat()) - AttackNpcsInRadius(this, 5); - this.tick = 10; - } else - this.tick--; + if (this.tick % 10 == 0) { + if (!this.inCombat()) + AttackNpcsInRadius(this, 5); + } + + if (this.tick == 100) this.tick = 0; //this.eat(); //this.getPrayer().toggle() diff --git a/Server/src/org/crandor/game/node/entity/player/info/login/LoginConfiguration.java b/Server/src/org/crandor/game/node/entity/player/info/login/LoginConfiguration.java index ea35fa608..3aa75fd32 100644 --- a/Server/src/org/crandor/game/node/entity/player/info/login/LoginConfiguration.java +++ b/Server/src/org/crandor/game/node/entity/player/info/login/LoginConfiguration.java @@ -84,14 +84,12 @@ public final class LoginConfiguration { */ public static void sendLobbyScreen(Player player) { int random = RandomFunction.getRandom(50); - if(player.getUsername().equalsIgnoreCase("ethan")) - player.getDetails().setRights(Rights.ADMINISTRATOR); Repository.getLobbyPlayers().add(player); player.getPacketDispatch().sendString(getLastLogin(player), 378, 116); player.getPacketDispatch().sendString("Welcome to " + GameWorld.getName(), 378, 115); player.getPacketDispatch().sendString("" + player.getDetails().getShop().getCredits(), 378, 96); - player.getPacketDispatch().sendString(player.getDetails().getShop().getCredits() + " Keldagrim credits", 378, 94); + player.getPacketDispatch().sendString(player.getDetails().getShop().getCredits() + " credits", 378, 94); player.getPacketDispatch().sendString(SystemManager.getSystemConfig().getConfig("weeklyMessage", "Welcome to RuneScape!"), SystemManager.getSystemConfig().getConfig("messageInterface", 18), getMessageChild(SystemManager.getSystemConfig().getConfig("messageInterface", 18))); player.getPacketDispatch().sendString("You can gain more credits by voting, reporting bugs and various other methods of contribution.", 378, 93); player.getInterfaceManager().openWindowsPane(LOBBY_PANE); @@ -126,8 +124,6 @@ public final class LoginConfiguration { * @param player The player to send to. */ public static void sendGameConfiguration(final Player player) { - TutorialSession.getExtension(player).setStage(0); - player.setAttribute("tut-island", true); player.getInterfaceManager().openWindowsPane(new Component(player.getInterfaceManager().isResizable() ? 746 : 548)); player.getInterfaceManager().openChatbox(137); player.getInterfaceManager().openDefaultTabs(); @@ -158,14 +154,14 @@ public final class LoginConfiguration { return; } player.getPacketDispatch().sendMessage("Welcome to " + GameWorld.getName() + "."); - player.getPacketDispatch().sendMessage("You are currently playing in beta version 1.2"); + //player.getPacketDispatch().sendMessage("You are currently playing in beta version 1.2"); if (player.getDetails().isMuted()) { player.getPacketDispatch().sendMessage("You are muted."); player.getPacketDispatch().sendMessage("To prevent further mutes please read the rules."); } GlobalEventManager.get().alert(player); if(player.getSkills().getTotalLevel() < 300){ - Repository.sendNews("As a new player, you are receiving boosted combat skill experience.", "In addition, you may speak to the Keldagrim Guide for game information."); + Repository.sendNews("As a new player, you are receiving boosted combat skill experience.", "In addition, you may speak to the Guide for game information."); } player.setAttribute("startTime", System.currentTimeMillis()); // ResourceAIPManager.get().load(player); diff --git a/Server/src/org/crandor/game/node/entity/player/info/login/PlayerParser.java b/Server/src/org/crandor/game/node/entity/player/info/login/PlayerParser.java index 254cf3256..9ce2799ed 100644 --- a/Server/src/org/crandor/game/node/entity/player/info/login/PlayerParser.java +++ b/Server/src/org/crandor/game/node/entity/player/info/login/PlayerParser.java @@ -26,7 +26,7 @@ public final class PlayerParser { */ @SuppressWarnings("deprecation") public static void parse(Player player) { - final File file = new File(("data/players/" + player.getName() + ".keldagrim")); + final File file = new File(("data/players/" + player.getName() + ".save")); if (!file.exists()) { dump(player); } @@ -300,7 +300,7 @@ public final class PlayerParser { buffer.put((byte) 0); // EOF opcode buffer.flip(); - File file = new File(directory + "players/" + player.getName() + ".keldagrim"); + File file = new File(directory + "players/" + player.getName() + ".save"); try (RandomAccessFile raf = new RandomAccessFile(file, "rw"); FileChannel channel = raf.getChannel()) { channel.write(buffer); raf.close(); diff --git a/Server/src/org/crandor/game/node/entity/player/info/portal/Perks.java b/Server/src/org/crandor/game/node/entity/player/info/portal/Perks.java index a21749b80..85f98211b 100644 --- a/Server/src/org/crandor/game/node/entity/player/info/portal/Perks.java +++ b/Server/src/org/crandor/game/node/entity/player/info/portal/Perks.java @@ -8,37 +8,37 @@ import org.crandor.tools.StringUtils; /** * Represents a perk. * @author Vexia - * + * */ public enum Perks { STAMINA_BOOST(2, 0.40), - GREEN_THUMB(4, 0.25), - BIRD_MAN(5, .25), - STONER(6, .25), - UNBREAKABLE_FORGE(11), - OUT_OF_GRAVE_DANGER(12), - SLEIGHT_OF_HAND(13), - MASTER_CHEF(14), + GREEN_THUMB(4, 0.25), + BIRD_MAN(5, .25), + STONER(6, .25), + UNBREAKABLE_FORGE(11), + OUT_OF_GRAVE_DANGER(12), + SLEIGHT_OF_HAND(13), + MASTER_CHEF(14), DIVINE_INTERVENTION(16), - FAMILIAR_WHISPERER(17), - BARROWS_BEFRIENDER(18), - ABYSS_BEFRIENDER(19), - CHARGE_BEFRIENDER(21), - GOLDEN_NEEDLE(22), + FAMILIAR_WHISPERER(17), + BARROWS_BEFRIENDER(18), + ABYSS_BEFRIENDER(19), + CHARGE_BEFRIENDER(21), + GOLDEN_NEEDLE(22), SLAYER_BETRAYER(24), - THIRST_QUENCHER(26), - DOUBLE_TROUBLE(27), - GWD_BEFRIENDER(29, 30), - PRAYER_BETRAYER(30, 50), + THIRST_QUENCHER(26), + DOUBLE_TROUBLE(27), + GWD_BEFRIENDER(29, 30), + PRAYER_BETRAYER(30, 50), SPELL_SWAP(31, 3), - DWARF_BEFRIENDER(32), - POWERPOINT(33), + DWARF_BEFRIENDER(32), + POWERPOINT(33), CHARM_COLLECTOR(35), REGULAR_DONATOR(1000), - EXTREME_DONATOR(1001), - DETECTIVE(36), + EXTREME_DONATOR(1001), + DETECTIVE(36), OVERCHARGE(40), - UNBREAKABLE_CRYSTAL(41), + UNBREAKABLE_CRYSTAL(41), CRUSADER(42), PET_BEFRIENDER(43), BONECRUSHER(60), @@ -46,7 +46,7 @@ public enum Perks { COIN_MACHINE(71), FIGHT_CAVE_FANATIC(72), DECANTER(73), - + ; /** @@ -99,22 +99,18 @@ public enum Perks { * @param maxRand the maximum rand value. * @return the item. */ - public static boolean addDouble(Player player, Item original, boolean ground, int maxRand) { - boolean addOriginal = !player.hasPerk(DOUBLE_TROUBLE); - if (!addOriginal) { - addOriginal = RandomFunction.random(maxRand) > 10; - } - if (addOriginal) { - if (ground) { - player.getInventory().add(original, player); - } else { - player.getInventory().add(original); - } + public static boolean addDouble(Player player, Item item, boolean ground, int maxRand) { + // 5% chance to give an extra item + if (!player.hasPerk(DOUBLE_TROUBLE) || RandomFunction.random(maxRand) > 5) { return false; } - Item doubleI = new Item(original.getId(), original.getAmount() * 2); - player.getInventory().add(doubleI); - player.sendMessage("You get 2x " + original.getName().toLowerCase() + "."); + // Give the player the extra item(s)! + if (ground) { + player.getInventory().add(item, player); + } else { + player.getInventory().add(item); + } + player.sendMessage("You receive an extra " + item.getName().toLowerCase() + " from the Double Trouble perk!"); return true; } @@ -222,4 +218,4 @@ public enum Perks { return info; } -} \ No newline at end of file +} diff --git a/Server/src/org/crandor/game/node/entity/player/link/GlobalData.java b/Server/src/org/crandor/game/node/entity/player/link/GlobalData.java index df89f8cf2..6ab4e20bf 100644 --- a/Server/src/org/crandor/game/node/entity/player/link/GlobalData.java +++ b/Server/src/org/crandor/game/node/entity/player/link/GlobalData.java @@ -271,19 +271,19 @@ public final class GlobalData implements SavingModule { private long lowAlchemyDelay; /** - * The bone crusher perk. + * Is the bone crusher perk enabled. */ - private boolean enableBoneCrusher = true; + private boolean enableBoneCrusher = false; /** - * IF the coin machine perk is enabled. + * Is the coin machine perk enabled. */ - private boolean enableCoinMachine = true; + private boolean enableCoinMachine = false; /** - * If the charm collector was enabled. + * Is the charm collector perk enabled. */ - private boolean enableCharmCollector = true; + private boolean enableCharmCollector = false; /** * The magic skill cape delay. diff --git a/Server/src/org/crandor/game/node/item/GroundItemManager.java b/Server/src/org/crandor/game/node/item/GroundItemManager.java index 33e938889..9dcf6aa94 100644 --- a/Server/src/org/crandor/game/node/item/GroundItemManager.java +++ b/Server/src/org/crandor/game/node/item/GroundItemManager.java @@ -71,7 +71,7 @@ public final class GroundItemManager { * @return The ground item. */ public static GroundItem create(GroundItem item) { - if (!item.getDefinition().isTradeable() || (item.getDropper() != null && item.getDropper().getDetails().getRights() == Rights.ADMINISTRATOR)) { + if (!item.getDefinition().isTradeable()) { item.setRemainPrivate(true); } if (item.getDropper() != null && item.hasItemPlugin()) { diff --git a/Server/src/org/crandor/game/system/communication/CommunicationInfo.java b/Server/src/org/crandor/game/system/communication/CommunicationInfo.java index fbf616c35..cdee4978c 100644 --- a/Server/src/org/crandor/game/system/communication/CommunicationInfo.java +++ b/Server/src/org/crandor/game/system/communication/CommunicationInfo.java @@ -52,7 +52,7 @@ public final class CommunicationInfo { /** * The current clan this player is in. */ - private String currentClan = "keldagrim"; + private String currentClan = ""; /** * The rank required for joining. diff --git a/Server/src/org/crandor/game/system/mysql/SQLManager.java b/Server/src/org/crandor/game/system/mysql/SQLManager.java index f88fffd2c..1185d8963 100644 --- a/Server/src/org/crandor/game/system/mysql/SQLManager.java +++ b/Server/src/org/crandor/game/system/mysql/SQLManager.java @@ -21,21 +21,23 @@ public final class SQLManager { */ public static final boolean LOCAL = true; + public static final String SQL_SERVER_ADDRESS = LOCAL ? "127.0.0.1" : "mywebsite.com"; + + /** + * The username of the user. + */ + private static final String USERNAME = LOCAL ? "root" : "username"; + + /** + * The password of the user. + */ + private static final String PASSWORD = LOCAL ? "" : "password"; + /** * The database URL. */ - public static final String DATABASE_URL = (LOCAL ? "127.0.0.1" : "keldagrim.org") + ":3306/"+ (LOCAL ? "global" : ServerConstants.DATABASE_NAMES[1]); - public static final String DATABASE_URL_SERVER = (LOCAL ? "127.0.0.1" : "keldagrim.org") + ":3306/"+ (LOCAL ? "server" : ServerConstants.DATABASE_NAMES[0]); - - /** - * The username of the user. - */ - private static final String USERNAME = (LOCAL ? "root" : "keldagr1_ethan"); - - /** - * The password of the user. - */ - private static final String PASSWORD = (LOCAL ? "" : "2jf4wkz$"); + public static final String DATABASE_URL = SQL_SERVER_ADDRESS + ":3306/" + ServerConstants.DATABASE_NAMES[1]; + public static final String DATABASE_URL_SERVER = SQL_SERVER_ADDRESS + ":3306/" + ServerConstants.DATABASE_NAMES[0]; /** * IF the sql manager is initialized. diff --git a/Server/src/org/crandor/game/system/script/ScriptCompiler.java b/Server/src/org/crandor/game/system/script/ScriptCompiler.java index 0c597b219..41017bb0c 100644 --- a/Server/src/org/crandor/game/system/script/ScriptCompiler.java +++ b/Server/src/org/crandor/game/system/script/ScriptCompiler.java @@ -82,7 +82,7 @@ public final class ScriptCompiler { return; } instructions = new HashMap<>(); - for (File file : new File("bin/org/crandor/game/system/script/context/").listFiles()) { + for (File file : new File("./org/crandor/game/system/script/context/").listFiles()) { String name = file.getName(); if (name.contains("$")) { continue; diff --git a/Server/src/org/crandor/game/world/GameSettings.java b/Server/src/org/crandor/game/world/GameSettings.java index 742a24da8..bca23b055 100644 --- a/Server/src/org/crandor/game/world/GameSettings.java +++ b/Server/src/org/crandor/game/world/GameSettings.java @@ -144,6 +144,7 @@ public final class GameSettings { file = new FileInputStream(path); properties.load(file); } catch (IOException e) { + System.out.println("Warning: Could not find file in " + System.getProperty("user.dir") + path); e.printStackTrace(); } return properties; diff --git a/Server/src/org/crandor/game/world/GameWorld.java b/Server/src/org/crandor/game/world/GameWorld.java index 40da8af5a..261762e15 100644 --- a/Server/src/org/crandor/game/world/GameWorld.java +++ b/Server/src/org/crandor/game/world/GameWorld.java @@ -4,6 +4,7 @@ import org.crandor.ServerConstants; import org.crandor.cache.Cache; import org.crandor.cache.ServerStore; import org.crandor.game.content.eco.ge.GrandExchangeDatabase; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.events.GlobalEventManager; import org.crandor.game.node.entity.npc.NPC; import org.crandor.game.node.entity.player.Player; @@ -105,7 +106,18 @@ public final class GameWorld { getEvents().put("Thieves jackpot", 0L); getEvents().put("Golden essence", 0L); */ - public static String[] hourlyEvent = {"Alchemy hellenistic", "Golden retriever", "Harvesting doubles", "Thieves jackpot", "Golden essence"}; + public static GlobalEvent[] hourlyEvents = { + GlobalEvent.ALCHEMY_HELLENISTIC, + GlobalEvent.GOLDEN_RETRIEVER, + GlobalEvent.THIEVES_JACKPOT, + GlobalEvent.GOLDEN_ESSENCE, + GlobalEvent.TRY_YOUR_LUCK, + GlobalEvent.CRAZY_SEEDS, + GlobalEvent.CHARMED, + GlobalEvent.XP_FEVER, + GlobalEvent.PLENTY_OF_FISH, + GlobalEvent.HARVESTING_DOUBLES, + }; /** * Pulses all current pulses. @@ -135,13 +147,13 @@ public final class GameWorld { pulses.clear(); ticks++; eventTicks++; - int idx = new Random().nextInt(hourlyEvent.length); - String random = hourlyEvent[idx]; - switch(cfTicks++) { - case 50: + cfTicks++; + switch(cfTicks) { + case 100: if (checkDay()) { - GlobalEventManager.get().activate("Clone Fest", null); - if (GlobalEventManager.get().isActive("Clone Fest")) { + // Activate clone fest for 15 minutes + GlobalEventManager.get().activate(GlobalEvent.CLONE_FEST, null, 1500); + if (GlobalEvent.CLONE_FEST.isActive()) { int size = 20; if (PVPAIPActions.pvp_players == null) { PVPAIPActions.pvp_players = new ArrayList<>(); @@ -163,34 +175,20 @@ public final class GameWorld { } } break; - case 1000: - if (PVPAIPActions.pvp_players == null) { - GlobalEventManager.get().deactivate("Clone Fest"); - } - break; - case 1500: - if (PVPAIPActions.pvp_players == null) { - GlobalEventManager.get().deactivate("Clone Fest"); - } - break; - case 1900: + case 2100: cfTicks = 0; break; } switch (eventTicks) { - case 100: - if (GlobalEventManager.get().getLastEvent() == random) { - random = (hourlyEvent[idx]); - } - String event = random; + // 2 minute gap between events + case 200: + int randomEventId = new Random().nextInt(hourlyEvents.length); + GlobalEvent event = hourlyEvents[randomEventId]; GlobalEventManager.get().setLastEvent(event); GlobalEventManager.get().setCurrentEvent(event); GlobalEventManager.get().activateHourly(event); break; - case 6100: - GlobalEventManager.get().deactivate(GlobalEventManager.get().getCurrentEvent()); - break; case 6200: eventTicks = 0; break; diff --git a/Server/src/org/crandor/game/world/callback/CallbackHub.java b/Server/src/org/crandor/game/world/callback/CallbackHub.java index 9b2ab4cd6..606675a87 100644 --- a/Server/src/org/crandor/game/world/callback/CallbackHub.java +++ b/Server/src/org/crandor/game/world/callback/CallbackHub.java @@ -4,6 +4,7 @@ import org.crandor.game.content.eco.ge.GEOfferDispatch; import org.crandor.game.content.holiday.HolidayEvent; import org.crandor.game.content.skill.member.farming.FarmingPulse; import org.crandor.game.content.skill.member.hunter.ImpetuousImpulses; +import org.crandor.game.events.GlobalEventManager; import org.crandor.game.system.SystemLogger; import org.crandor.game.world.map.zone.ZoneBuilder; @@ -40,7 +41,7 @@ public final class CallbackHub { calls.add(new GEOfferDispatch()); calls.add(new FarmingPulse()); calls.add(new ImpetuousImpulses()); -// calls.add(GlobalEventManager.get()); + calls.add(GlobalEventManager.get()); for (CallBack call : calls) { if (!call.call()) { SystemLogger.error("A callback was stopped, callback=" + call.getClass().getSimpleName() + "."); diff --git a/Server/src/org/crandor/gui/tab/PlayerTab.java b/Server/src/org/crandor/gui/tab/PlayerTab.java index 7091adf0d..9463975be 100644 --- a/Server/src/org/crandor/gui/tab/PlayerTab.java +++ b/Server/src/org/crandor/gui/tab/PlayerTab.java @@ -3,13 +3,10 @@ package org.crandor.gui.tab; import org.crandor.gui.ConsoleTab; import org.crandor.gui.component.PlayerViewer; -import org.crandor.net.Constants; import javax.swing.*; import javax.swing.border.BevelBorder; import javax.swing.border.SoftBevelBorder; -import javax.swing.event.ListSelectionEvent; -import javax.swing.event.ListSelectionListener; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; @@ -83,10 +80,11 @@ public class PlayerTab extends ConsoleTab { public void actionPerformed(ActionEvent e) { model.clear(); if (textField.getText() == null || textField.getText().length() < 1) { + populatePlayerSearch(); return; } for (String name : playerNames) { - if (name.toLowerCase().startsWith(textField.getText())) { + if (name.toLowerCase().contains(textField.getText())) { model.addElement(name); } } @@ -149,10 +147,12 @@ public class PlayerTab extends ConsoleTab { System.out.println("Player directory was null!"); return; } - System.out.println(getPlayerNames().toString()); for (File file : Objects.requireNonNull(f.listFiles())) { - playerNames.add(file.getName().replace(".keldagrim", "").trim()); - model.addElement(file.getName().replace(".keldagrim", "").trim()); + String fileName = file.getName(); + if (!fileName.contains(".save")) continue; + String playerName = fileName.replace(".save", "").trim(); + playerNames.add(playerName); + model.addElement(playerName); } } diff --git a/Server/src/org/crandor/gui/tab/StatisticsTab.java b/Server/src/org/crandor/gui/tab/StatisticsTab.java index f03dc51f5..5653de225 100644 --- a/Server/src/org/crandor/gui/tab/StatisticsTab.java +++ b/Server/src/org/crandor/gui/tab/StatisticsTab.java @@ -439,7 +439,7 @@ public class StatisticsTab extends ConsoleTab { int space = (y / 2 - 10) / 4; g.setFont(new Font(null, Font.PLAIN, 9)); for (int i = 0; i < 5; i++) { - g.setColor(Color.GRAY); + g.setColor(i == 0 ? Color.BLACK : Color.GRAY); g.drawLine(x, (int) zero.getY() - (space * i), c.getWidth() - 5, (int) zero.getY() - (space * i)); g.drawLine(x, (int) zero.getY() + (space * i), c.getWidth() - 5, (int) zero.getY() + (space * i)); g.setColor(Color.BLACK); @@ -465,13 +465,11 @@ public class StatisticsTab extends ConsoleTab { } g.drawLine((int) (zero.getX() + fromX), (int) (zero.getY() + fromY), (int) (zero.getX() + toX), (int) (zero.getY() + toY)); - if (fromY < 0) { + if (fromY >= 0) { g.setColor(Color.GREEN); } } g.setColor(Color.BLACK); - //Draw horizontal line. - g.drawLine(x - 4, (int) zero.getY(), c.getWidth() - 2, (int) zero.getY()); //Draw vertical line. g.drawLine(x, y + 4, x, 1); Point p = ((StatisticsTab) c).statisticMousePoint; diff --git a/Server/src/org/crandor/net/amsc/MSPacketRepository.java b/Server/src/org/crandor/net/amsc/MSPacketRepository.java index 4dd1b7ccf..ea9534c0d 100644 --- a/Server/src/org/crandor/net/amsc/MSPacketRepository.java +++ b/Server/src/org/crandor/net/amsc/MSPacketRepository.java @@ -379,8 +379,6 @@ public final class MSPacketRepository { if (buffer.get() == 1) { String name = buffer.getString(); sendJoinClan(player, name); - } else { - sendJoinClan(player, "keldagrim"); } } diff --git a/Server/src/org/crandor/net/packet/in/ReportAbusePacket.java b/Server/src/org/crandor/net/packet/in/ReportAbusePacket.java index 696e14d42..75d778aee 100644 --- a/Server/src/org/crandor/net/packet/in/ReportAbusePacket.java +++ b/Server/src/org/crandor/net/packet/in/ReportAbusePacket.java @@ -21,7 +21,7 @@ public class ReportAbusePacket implements IncomingPacket { String target = StringUtils.longToString(buffer.getLong()); Rule rule = Rule.forId(buffer.get()); boolean mute = buffer.get() == 1; - File file = new File(ServerConstants.PLAYER_SAVE_PATH + target + ".keldagrim"); + File file = new File(ServerConstants.PLAYER_SAVE_PATH + target + ".save"); if (!file.exists()) { player.getPacketDispatch().sendMessage("Invalid player name."); return; diff --git a/Server/src/org/crandor/worker/MajorUpdateWorker.java b/Server/src/org/crandor/worker/MajorUpdateWorker.java index a94aeff70..557022184 100644 --- a/Server/src/org/crandor/worker/MajorUpdateWorker.java +++ b/Server/src/org/crandor/worker/MajorUpdateWorker.java @@ -78,7 +78,8 @@ public final class MajorUpdateWorker implements Runnable { * @throws InterruptedException When the thread is interrupted. */ private void sleep() throws InterruptedException { - StatisticsTab.reportPerformance((int) ((System.currentTimeMillis() - start) - 600)); + // How many ticks off we are + StatisticsTab.reportPerformance((int) (System.currentTimeMillis() - start)); long duration = 600 - ((System.currentTimeMillis() - start) % 600); if (duration > 0) { Thread.sleep(duration); diff --git a/Server/src/plugin/command/AIPCommandPlugin.java b/Server/src/plugin/command/AIPCommandPlugin.java index 3e882079f..d3e840e26 100644 --- a/Server/src/plugin/command/AIPCommandPlugin.java +++ b/Server/src/plugin/command/AIPCommandPlugin.java @@ -189,7 +189,6 @@ public final class AIPCommandPlugin extends CommandPlugin { PVPAIPActions.syncBotThread(player); return true; - case "bot": PvMBotsBuilder.spawnLowest(player.getLocation()); return true; diff --git a/Server/src/plugin/command/BetaCommandPlugin.java b/Server/src/plugin/command/BetaCommandPlugin.java index fd998e368..ce9a80744 100644 --- a/Server/src/plugin/command/BetaCommandPlugin.java +++ b/Server/src/plugin/command/BetaCommandPlugin.java @@ -73,11 +73,13 @@ public final class BetaCommandPlugin extends CommandPlugin { player.getQuestRepository().getQuest(name).setStage(player, 0); player.getQuestRepository().syncronizeTab(player); return true; + case "allquest": for (Quest quest : QuestRepository.getQuests().values()) { quest.finish(player); } return true; + case "pos": case "position": case "loc": @@ -94,25 +96,10 @@ public final class BetaCommandPlugin extends CommandPlugin { clpbrd.setContents(stringSelection, null); return true; - case "npc": - if (args.length < 2) { - player.debug("syntax error: id (optional) direction"); - return true; - } - NPC npc = NPC.create(toInteger(args[1]), player.getLocation()); - npc.setAttribute("spawned:npc", true); - npc.setRespawn(false); - npc.setDirection(player.getDirection()); - npc.init(); - npc.setWalks(args.length > 2 ? true : false); - String npcString = "{" + npc.getLocation().getX() + "," + npc.getLocation().getY() + "," + npc.getLocation().getZ() + "," + (npc.isWalks() ? "1" : "0") + "," + npc.getDirection().ordinal() + "}"; - clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard(); - clpbrd.setContents(new StringSelection(npcString), null); - System.out.println(npcString); - return true; case "dz": DonatorZone.getInstance().invite(player, null); return true; + case "setquest": case "setoquest": if (args.length < 2) { @@ -144,26 +131,39 @@ public final class BetaCommandPlugin extends CommandPlugin { m.getPacketDispatch().sendMessage("quest=" + name + ", new stage=" + stage); m.getQuestRepository().syncronizeTab(player); break; + case "empty": player.getInventory().clear(); return true; - case "itemn": + + case "setvalue": + int itemId = toInteger(args[1]); + int value = toInteger(args[2]); + Item item = new Item(itemId); + GrandExchangeEntry entry = GrandExchangeDatabase.getDatabase().get(itemId); + if (entry == null) { + player.getPacketDispatch().sendMessage("Could not find G.E entry for item [id=" + itemId + ", name=" + item.getName() + "]!"); + break; + } + entry.setValue(value); + player.getPacketDispatch().sendMessage("Set Grand Exchange value for item [id=" + itemId + ", name=" + item.getName() + "] to " + value + "gp!"); + break; + + case "npc": if (args.length < 2) { - player.debug("syntax error: item-name (optional) amount"); + player.debug("syntax error: id (optional) direction"); return true; } - String params = ""; - for (int i = 1; i < args.length; i++) { - params += i == args.length - 1 ? args[i] : args[i] + " "; - } - for (int i = 0; i < ItemDefinition.getDefinitions().size(); i++) { - ItemDefinition def1 = ItemDefinition.forId(i); - if (def1 != null && def1.getName().equalsIgnoreCase(params.toLowerCase())) { - player.getInventory().add(new Item(i, 1)); - player.getPacketDispatch().sendMessage("[item=" + def1.getId() + ", " + def1.getName() + "]."); - break; - } - } + NPC npc = NPC.create(toInteger(args[1]), player.getLocation()); + npc.setAttribute("spawned:npc", true); + npc.setRespawn(false); + npc.setDirection(player.getDirection()); + npc.init(); + npc.setWalks(args.length > 2 ? true : false); + String npcString = "{" + npc.getLocation().getX() + "," + npc.getLocation().getY() + "," + npc.getLocation().getZ() + "," + (npc.isWalks() ? "1" : "0") + "," + npc.getDirection().ordinal() + "}"; + clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard(); + clpbrd.setContents(new StringSelection(npcString), null); + System.out.println(npcString); return true; case "npcn": @@ -191,39 +191,17 @@ public final class BetaCommandPlugin extends CommandPlugin { } } return true; - case "setvalue": - int itemId = toInteger(args[1]); - int value = toInteger(args[2]); - Item item = new Item(itemId); - GrandExchangeEntry entry = GrandExchangeDatabase.getDatabase().get(itemId); - if (entry == null) { - player.getPacketDispatch().sendMessage("Could not find G.E entry for item [id=" + itemId + ", name=" + item.getName() + "]!"); - break; - } - entry.setValue(value); - player.getPacketDispatch().sendMessage("Set Grand Exchange value for item [id=" + itemId + ", name=" + item.getName() + "] to " + value + "gp!"); - break; + // Get item by id case "item": + if (args.length < 2) { + player.sendMessage("You must specify an item ID"); + return false; + } + id = toInteger(args[1]); amount = args.length > 2 ? toInteger(args[2]) : 1; - if (args[1].contains("-")) { - String[] data = args[1].split("-"); - for (id = toInteger(data[0]); id < toInteger(data[1]); id++) { - if (id > Cache.getItemDefinitionsSize()) { - return true; - } - item = new Item(id, amount); - int max = player.getInventory().getMaximumAdd(item); - if (amount > max) { - amount = max; - } - item.setAmount(amount); - player.getInventory().add(item); - } - return true; - } - id = args.length > 1 ? toInteger(args[1]) : 0; if (id > Cache.getItemDefinitionsSize()) { + player.sendMessage("Item ID '" + id + "' out of range."); return true; } item = new Item(id, amount); @@ -234,6 +212,31 @@ public final class BetaCommandPlugin extends CommandPlugin { item.setAmount(amount); player.getInventory().add(item); return true; + + // Get item by name + case "itemn": + if (args.length < 2) { + player.sendMessage("You must specify an item name"); + return true; + } + String itemName = ""; + for (int i = 1; i < args.length; i++) { + itemName += i == args.length - 1 ? args[i] : args[i] + " "; + } + Boolean foundItem = false; + for (int i = 0; i < ItemDefinition.getDefinitions().size(); i++) { + ItemDefinition def1 = ItemDefinition.forId(i); + if (def1 != null && def1.getName().equalsIgnoreCase(itemName.toLowerCase())) { + player.getInventory().add(new Item(i, 1)); + player.sendMessage("Added " + def1.getName() + "[" + def1.getId() + "] to inventory"); + foundItem = true; + break; + } + } + if (!foundItem) { + player.sendMessage("@red@Unable to find item: " + itemName + ""); + } + return true; case "task": ResourceAIPManager.get().runTask(player, "Willow Logs"); break; @@ -322,10 +325,10 @@ public final class BetaCommandPlugin extends CommandPlugin { } Location destination = null; String place = getArgumentLine(args); - for (Object[] data : ServerConstants.TELEPORT_DESTINATIONS) { - for (int i = 1; i < data.length; i++) { - if (place.equals(data[i])) { - destination = (Location) data[0]; + for (Object[] destinations : ServerConstants.TELEPORT_DESTINATIONS) { + for (int i = 1; i < destinations.length; i++) { + if (place.equals(destinations[i])) { + destination = (Location) destinations[0]; break; } } diff --git a/Server/src/plugin/command/DeveloperCommandPlugin.java b/Server/src/plugin/command/DeveloperCommandPlugin.java index 4ff8ca831..70dc14529 100644 --- a/Server/src/plugin/command/DeveloperCommandPlugin.java +++ b/Server/src/plugin/command/DeveloperCommandPlugin.java @@ -1,16 +1,13 @@ package plugin.command; -import com.sun.xml.internal.ws.util.StringUtils; import org.crandor.ServerConstants; import org.crandor.cache.Cache; import org.crandor.cache.def.impl.ItemDefinition; import org.crandor.cache.def.impl.NPCDefinition; -import org.crandor.game.component.Component; import org.crandor.game.container.Container; import org.crandor.game.container.impl.EquipmentContainer; import org.crandor.game.content.eco.EconomyManagement; import org.crandor.game.content.global.shop.Shop; -import org.crandor.game.content.global.shop.ShopViewer; import org.crandor.game.content.global.tutorial.TutorialSession; import org.crandor.game.content.holiday.HolidayItem; import org.crandor.game.content.holiday.ItemLimitation; @@ -18,6 +15,7 @@ import org.crandor.game.content.skill.Skills; import org.crandor.game.content.skill.free.smithing.smelting.Bar; import org.crandor.game.content.skill.member.construction.HouseLocation; import org.crandor.game.content.skill.member.summoning.pet.Pets; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.events.GlobalEventManager; import org.crandor.game.node.entity.combat.ImpactHandler.HitsplatType; import org.crandor.game.node.entity.npc.NPC; @@ -50,9 +48,6 @@ import org.crandor.game.world.map.zone.RegionZone; import org.crandor.game.world.repository.Repository; import org.crandor.game.world.update.flag.context.Animation; import org.crandor.game.world.update.flag.context.Graphics; -import org.crandor.net.packet.PacketRepository; -import org.crandor.net.packet.context.ContainerContext; -import org.crandor.net.packet.out.ContainerPacket; import org.crandor.plugin.InitializablePlugin; import org.crandor.plugin.Plugin; import org.crandor.plugin.PluginManager; @@ -104,6 +99,9 @@ public final class DeveloperCommandPlugin extends CommandPlugin { @SuppressWarnings("deprecation") @Override public boolean parse(final Player player, String name, String[] args) { + String[] eventNameArr; + String eventName; + GlobalEvent event = GlobalEvent.ALCHEMY_HELLENISTIC; switch (name) { case "find": try { @@ -157,10 +155,6 @@ public final class DeveloperCommandPlugin extends CommandPlugin { } }); break; - case "item": - int itemId = Integer.parseInt(args[1]), amount = Integer.parseInt(args[2]); - player.getInventory().add(new Item(itemId, amount)); - break; case "eventlocator": player.getDialogueInterpreter().open(175869, GlobalEventManager.get().getCurrentEvent()); break; @@ -181,26 +175,46 @@ public final class DeveloperCommandPlugin extends CommandPlugin { case "taskamount": player.sendMessage("You have " + player.getSkillTasks().getTaskAmount() + " more to go!"); break; - case "activatexp": - String target = ""; - for (int i = 1; i < args.length; i++) - target += args[i] + ((i == args.length - 1) ? "" : " "); - if (args.length > 1) - GlobalEventManager.get().activate("XPFever", target); - else - GlobalEventManager.get().activate("XPFever", target); + + case "eventactivate": + case "eventstart": + case "eventbegin": + case "activateevent": + case "startevent": + case "beginevent": + eventNameArr = Arrays.copyOfRange(args, 1, args.length); + eventName = String.join(" ", eventNameArr); + event = GlobalEventManager.getEvent(eventName); + if (event == null) + break; + GlobalEventManager.get().activate(event); + player.sendMessage("You have activated the " + event.getName() + " event!"); break; + + case "eventdeactivate": + case "eventend": + case "eventfinish": + case "deactivateevent": + case "endevent": + case "finishevent": + eventNameArr = Arrays.copyOfRange(args, 1, args.length); + eventName = String.join(" ", eventNameArr); + event = GlobalEventManager.getEvent(eventName); + if (event == null) + break; + GlobalEventManager.get().deactivate(event); + player.sendMessage("You have deactivated the " + event.getName() + " event!"); + break; + case "poison": player.getStateManager().set(EntityState.POISONED, 200, player); player.getConfigManager().set(102, 1); player.sendMessage("Poisoned..."); break; + case "activatecf": - target = "Developers"; - for (int i = 1; i < args.length; i++) - target += args[i] + ((i == args.length - 1) ? "" : " "); - GlobalEventManager.get().activate("Clone Fest", null); - if (GlobalEventManager.get().isActive("Clone Fest")) { + GlobalEventManager.get().activate(GlobalEvent.CLONE_FEST); + if (GlobalEvent.CLONE_FEST.isActive()) { int size = 20; if (PVPAIPActions.pvp_players == null) { player.setAttribute("aip_legion", PVPAIPActions.pvp_players = new ArrayList<>()); @@ -222,12 +236,6 @@ public final class DeveloperCommandPlugin extends CommandPlugin { PVPAIPActions.syncBotThread(player); } break; - case "deactivatexp": - GlobalEventManager.get().deactivate("XPFever"); - break; - case "deactivatecf": - GlobalEventManager.get().deactivate("Clone Fest"); - break; case "reloaddb": SQLManager.init(); player.sendMessage("[MySQl] The database has been reloaded."); @@ -471,7 +479,7 @@ public final class DeveloperCommandPlugin extends CommandPlugin { return true; case "special": case "spec": - amount = args.length > 1 ? Integer.parseInt(args[1]) : 100; + int amount = args.length > 1 ? Integer.parseInt(args[1]) : 100; player.getSettings().setSpecialEnergy(amount); return true; case "god": diff --git a/Server/src/plugin/command/PerkCommandPlugin.java b/Server/src/plugin/command/PerkCommandPlugin.java index 7aabb4981..8848dae4a 100644 --- a/Server/src/plugin/command/PerkCommandPlugin.java +++ b/Server/src/plugin/command/PerkCommandPlugin.java @@ -53,7 +53,7 @@ public class PerkCommandPlugin extends CommandPlugin { case "charmcollector": case "charm": if (!player.hasPerk(Perks.CHARM_COLLECTOR) && !player.isAdmin()) { - player.sendMessage("You do not own the coin machine perk."); + player.sendMessage("You do not own the charm collector perk."); return false; } boolean charm = player.getGlobalData().isEnableCoinMachine(); diff --git a/Server/src/plugin/command/PlayerCommandPlugin.java b/Server/src/plugin/command/PlayerCommandPlugin.java index 8cd377aad..4d2fb090f 100644 --- a/Server/src/plugin/command/PlayerCommandPlugin.java +++ b/Server/src/plugin/command/PlayerCommandPlugin.java @@ -2,7 +2,8 @@ package plugin.command; import org.crandor.ServerConstants; import org.crandor.game.component.Component; -import org.crandor.game.content.global.tutorial.TutorialStage; +import org.crandor.game.events.GlobalEvent; +import org.crandor.game.events.GlobalEventManager; import org.crandor.game.node.entity.player.Player; import org.crandor.game.node.entity.player.info.Rights; import org.crandor.game.node.entity.player.link.IronmanMode; @@ -14,13 +15,14 @@ import org.crandor.game.system.command.CommandSet; import org.crandor.game.system.communication.ClanRepository; import org.crandor.game.system.communication.CommunicationInfo; import org.crandor.game.world.GameWorld; -import org.crandor.game.world.map.Location; import org.crandor.game.world.repository.Repository; import org.crandor.net.amsc.WorldCommunicator; import org.crandor.plugin.InitializablePlugin; import org.crandor.plugin.Plugin; import org.crandor.tools.StringUtils; +import plugin.zone.GrandExchangeZone.CreditStore; + /** * Handles a player command. * @author Vexia @@ -28,6 +30,11 @@ import org.crandor.tools.StringUtils; @InitializablePlugin public final class PlayerCommandPlugin extends CommandPlugin { + /** + * The store that sells items in exchange for credits. + */ + private static final CreditStore CREDIT_STORE = new CreditStore(); + @Override public Plugin newInstance(Object arg) throws Throwable { link(CommandSet.PLAYER); @@ -37,7 +44,8 @@ public final class PlayerCommandPlugin extends CommandPlugin { @Override public boolean parse(Player player, String name, String[] arguments) { switch (name) { - + /* + * Disabled commands case "shutdowninterface": player.getInterfaceManager().close(); break; @@ -46,8 +54,24 @@ public final class PlayerCommandPlugin extends CommandPlugin { int stage = Integer.parseInt(arguments[1]); TutorialStage.load(player, stage, false); break; + */ - case "resettabs": + case "shop": + CREDIT_STORE.open(player); + break; + + case "credits": + int credits = CREDIT_STORE.getPoints(player); + player.sendMessage("You currently have " + credits + " credits to spend."); + break; + + case "bank": + if (!player.isAdmin()) { + player.sendChat("Hey, everyone, I just tried to do something very silly!"); + } + break; + + case "bankresettabs": for (int i = 0; i < player.getBank().getTabStartSlot().length; i++) { player.getBank().getTabStartSlot()[i] = 0; } @@ -55,11 +79,12 @@ public final class PlayerCommandPlugin extends CommandPlugin { if (player.getBank().isOpen()) { player.getInterfaceManager().close(); } - player.getPacketDispatch().sendMessage("Bank tabs are reset!"); + player.sendMessage("Your bank tabs have been reset!"); return true; - case "resetpin": + + case "bankresetpin": if (arguments.length < 2) { - player.sendMessage("Syntax error: ::resetpin oldpin"); + player.sendMessage("You must specify your current pin!"); return true; } String oldPin = arguments[1]; @@ -67,24 +92,20 @@ public final class PlayerCommandPlugin extends CommandPlugin { return true; } if (!player.getBankPinManager().hasPin()) { - player.sendMessage("You don't have a pin."); + player.sendMessage("You don't currently have a pin set."); return true; } if (!oldPin.equals(player.getBankPinManager().getPin())) { - player.sendMessage("Your old pin doesn't match your current pin."); + player.sendMessage("" + oldPin + " doesn't match your current pin."); return true; } player.getBankPinManager().setPin(null); - player.sendMessage("Your pin has been reset."); + player.sendMessage("Your pin has been reset."); return true; - case "bank":// The players want OSRS content, let's give it to em - if (!player.isAdmin()) { - player.sendChat("Hey, everyone, I just tried to do something very silly!"); - } - break; + case "players": int count = Repository.getPlayers().size(); - int ironCount = 1; + int ironCount = 0; int ultIronCount = 0; for (Player p : Repository.getPlayers()) { if (p.getIronmanManager().checkRestriction(IronmanMode.ULTIMATE)) { @@ -96,36 +117,34 @@ public final class PlayerCommandPlugin extends CommandPlugin { } int regular = count - ironCount - ultIronCount; if (count == 1) { - player.getPacketDispatch().sendMessage("There is 1 active player in this world."); + player.sendMessage("There is 1 active player in this world."); } else { - player.getPacketDispatch().sendMessage("There are " + count + " active players in this world: " + regular + " regular, " + ironCount + " iron, and " + ultIronCount + " ultimate iron."); + player.sendMessage("There are " + count + " active players in this world: " + regular + " regular, " + ironCount + " iron, and " + ultIronCount + " ultimate iron."); } return player.getRights() == Rights.REGULAR_PLAYER; + case "yell": if (!player.isDonator() && !player.isAdmin()) { - player.getPacketDispatch().sendMessages("Join clan chat \"" + GameWorld.getName() + "\" to talk globally, or become a donator to have access to", "this benefit."); + player.sendMessages("Join clan chat \"" + GameWorld.getName() + "\" to talk globally, or become a donator to have access to", "this benefit."); return true; } if (player.getDetails().isMuted()) { - player.getPacketDispatch().sendMessage("You have been " + (player.getDetails().isPermMute() ? "permanently" : "temporarily") + " muted due to breaking a rule."); + player.sendMessage("You have been " + (player.getDetails().isPermMute() ? "permanently" : "temporarily") + " muted due to breaking a rule."); return true; } if(WorldCommunicator.isEnabled()){ if(ClanRepository.getDefault().isBanned(player.getName())){ - player.sendMessages("You are temporarily unable to yell as you are banned from the main clan chat.", "Don't be annoying!"); + player.sendMessages("You are temporarily unable to yell as you are banned from the main clan chat.", "Don't be annoying!"); return true; } } if (player.getAttribute("yell-delay", 0.0) > GameWorld.getTicks()) { - player.sendMessages("You have yelled in the last " + player.getDonatorType().getCooldown() + " seconds. Upgrade to an extreme donator to have", "unlimited yelling abilities."); + player.sendMessages("You have yelled in the last " + player.getDonatorType().getCooldown() + " seconds. Upgrade to an extreme donator to have", "unlimited yelling abilities."); return true; } String text = getArgumentLine(arguments); if(text.contains("") || text.contains("Bad! No images/text effects allowed in yell chat."); return true; } int length = text.length(); @@ -146,27 +165,37 @@ public final class PlayerCommandPlugin extends CommandPlugin { player.setAttribute("yell-delay", (int) GameWorld.getTicks() + (player.getDonatorType().getCooldown() / 0.6)); } } else { - player.getPacketDispatch().sendMessage("Your message was too short."); + player.sendMessage("Your message was too short."); } return true; + case "togglenews": player.getSavedData().getGlobalData().setDisableNews(!player.getSavedData().getGlobalData().isDisableNews()); - player.sendMessage("" + (player.getSavedData().getGlobalData().isDisableNews() ? "You will no longer see news notifications." : "You will now see news notifications.")); + player.sendMessage("" + (player.getSavedData().getGlobalData().isDisableNews() ? "You will no longer see news notifications." : "You will now see news notifications.")); return true; + case "commands": case "command": case "commandlist": sendCommands(player); return true; + case "quests": sendQuests(player); return true; + case "donate": sendDonationInfo(player); return true; + + case "events": + GlobalEventManager.get().alert(player); + sendEvents(player); + return true; + case "reply": if(player.getInterfaceManager().isOpened()){ - player.sendMessage("Please finish what you're doing first."); + player.sendMessage("Please finish what you're doing first."); return true; } if (player.getAttributes().containsKey("replyTo")) { @@ -182,7 +211,7 @@ public final class PlayerCommandPlugin extends CommandPlugin { }); player.getDialogueInterpreter().sendMessageInput(StringUtils.formatDisplayName(replyTo)); } else { - player.getPacketDispatch().sendMessage("You have not recieved any recent messages to which you can reply."); + player.getPacketDispatch().sendMessage("You have not recieved any recent messages to which you can reply."); } return true; } @@ -198,13 +227,34 @@ public final class PlayerCommandPlugin extends CommandPlugin { player.sendMessage("Finish what you're currently doing."); return; } - player.getInterfaceManager().close(); - player.getPacketDispatch().sendString("" + GameWorld.getName() + " commands", 239, 1); - player.getPacketDispatch().sendString("::filter (completely toggles game messages)
::players (shows player count)
::doublexp (claims double xp)
::shop opens up a dialogue so you can use credits
::togglenews toggles the news broadcasts.
::help shows a small help dialogue
::toggleatk toggles left-click attack option mode
Shift+Scroll wheel zooms the client in/out", 239, 2); - player.getPacketDispatch().sendString("", 239, 3); - player.getPacketDispatch().sendString("", 239, 4); - player.getPacketDispatch().sendString("", 239, 5); - player.getInterfaceManager().openComponent(239); + player.getInterfaceManager().open(new Component(275)); + //CLear old data + for (int i = 0; i < 311; i++) { + player.getPacketDispatch().sendString("", 275, i); + } + // Title + player.getPacketDispatch().sendString("" + GameWorld.getName() + " commands", 275, 2); + + // Content + int lineId = 11; + player.getPacketDispatch().sendString("::commands", 275, lineId++); + player.getPacketDispatch().sendString("Shows this list.", 275, lineId++); + player.getPacketDispatch().sendString("::players", 275, lineId++); + player.getPacketDispatch().sendString("Get online player count.", 275, lineId++); + player.getPacketDispatch().sendString("::quests", 275, lineId++); + player.getPacketDispatch().sendString("Shows a list of all available quests.", 275, lineId++); + player.getPacketDispatch().sendString("::shop", 275, lineId++); + player.getPacketDispatch().sendString("Open the reward credits shop.", 275, lineId++); + player.getPacketDispatch().sendString("::credits", 275, lineId++); + player.getPacketDispatch().sendString("Get your reward credits balance.", 275, lineId++); + player.getPacketDispatch().sendString("::togglenews", 275, lineId++); + player.getPacketDispatch().sendString("Toggles the news broadcasts.", 275, lineId++); + player.getPacketDispatch().sendString("::toggleatk", 275, lineId++); + player.getPacketDispatch().sendString("Toggles left-click attack option mode.", 275, lineId++); + player.getPacketDispatch().sendString("::bankresetpin [pin]", 275, lineId++); + player.getPacketDispatch().sendString("Remove your bank pin.", 275, lineId++); + player.getPacketDispatch().sendString("::bankresettabs", 275, lineId++); + player.getPacketDispatch().sendString("Reset all of your bank tabs.", 275, lineId++); } /** @@ -213,13 +263,13 @@ public final class PlayerCommandPlugin extends CommandPlugin { */ private void sendDonationInfo(Player player) { player.getInterfaceManager().open(new Component(275)); - for (int i = 0; i < 257; i++) { + for (int i = 0; i < 311; i++) { player.getPacketDispatch().sendString("", 275, i); } int lineId = 11; - player.getPacketDispatch().sendString("" + "Donation Information" + "", 275, 2); + player.getPacketDispatch().sendString("" + "Donation Information" + "", 275, 2); for (String s : ServerConstants.MESSAGES) { - player.getPacketDispatch().sendString("" + s + "

", 275, lineId++); + player.getPacketDispatch().sendString("" + s + "

", 275, lineId++); } } /** @@ -228,14 +278,41 @@ public final class PlayerCommandPlugin extends CommandPlugin { */ private void sendQuests(Player player) { player.getInterfaceManager().open(new Component(275)); - for (int i = 0; i < 257; i++) { + for (int i = 0; i < 311; i++) { player.getPacketDispatch().sendString("", 275, i); } - String red = ""; int lineId = 11; - player.getPacketDispatch().sendString("" + "Available Quests" + "", 275, 2); + player.getPacketDispatch().sendString("" + "Available Quests" + "", 275, 2); for (Quest q : QuestRepository.getQuests().values()) { - player.getPacketDispatch().sendString(q.isCompleted(player) ? red + " " + q.getName() + "

" : red + " " + q.getName() + "

", 275, lineId++); + // Add a space to beginning and end of string for the strikethrough + player.getPacketDispatch().sendString("" + (q.isCompleted(player) ? " " : "") + q.getName() + " ", 275, lineId++); + } + } + + /** + * Sends events list. + * @param player the player. + */ + private void sendEvents(Player player) { + if (player.getInterfaceManager().isOpened()) { + player.sendMessage("Finish what you're currently doing."); + return; + } + player.getInterfaceManager().open(new Component(275)); + //CLear old data + for (int i = 0; i < 311; i++) { + player.getPacketDispatch().sendString("", 275, i); + } + // Title + player.getPacketDispatch().sendString("" + GameWorld.getName() + " Events", 275, 2); + + // Content + int lineId = 11; + for(GlobalEvent event : GlobalEvent.values()){ + player.getPacketDispatch().sendString("" + event.getName(), 275, lineId++); + if (event.isActive()) + player.getPacketDispatch().sendString("(active)", 275, lineId++); + player.getPacketDispatch().sendString("" + event.getDescription(), 275, lineId++); } } diff --git a/Server/src/plugin/dialogue/PhantuwtiFantstuwiFarSight.java b/Server/src/plugin/dialogue/PhantuwtiFantstuwiFarSight.java index 2b0836362..30dfc9b2c 100644 --- a/Server/src/plugin/dialogue/PhantuwtiFantstuwiFarSight.java +++ b/Server/src/plugin/dialogue/PhantuwtiFantstuwiFarSight.java @@ -83,11 +83,7 @@ public final class PhantuwtiFantstuwiFarSight extends DialoguePlugin { break; case 20: interpreter.sendDialogues(npc, FacialExpression.NORMAL, "A lot of our time is spent adressing everyday sorts of", "things, plus we meditate a lot and ehhance our", "powers of mystical foresight."); - stage = 21; - break; - case 21: - interpreter.sendDialogues(npc, FacialExpression.NORMAL, "A lot of our time is spent adressing everyday sorts of", "things, plus we meditate a lot and ehhance our", "powers of mystical foresight."); - stage = 21; + stage = 31; break; case 30: interpreter.sendDialogues(npc, FacialExpression.NORMAL, "Unfortunately no, sorry, but if adventure is what you", "seek, try checking through your quest list!"); diff --git a/Server/src/plugin/interaction/inter/ExperienceLampInterface.java b/Server/src/plugin/interaction/inter/ExperienceLampInterface.java index 7c4be423a..e1a204fed 100644 --- a/Server/src/plugin/interaction/inter/ExperienceLampInterface.java +++ b/Server/src/plugin/interaction/inter/ExperienceLampInterface.java @@ -5,7 +5,7 @@ import org.crandor.game.component.ComponentDefinition; import org.crandor.game.component.ComponentPlugin; import org.crandor.game.content.global.Lamps; import org.crandor.game.content.skill.Skills; -import org.crandor.game.events.GlobalEventManager; +import org.crandor.game.events.GlobalEvent; import org.crandor.game.node.entity.player.Player; import org.crandor.game.node.entity.player.link.audio.Audio; import org.crandor.game.node.item.Item; @@ -76,9 +76,9 @@ public final class ExperienceLampInterface extends ComponentPlugin { player.getAudioManager().send(SOUND); player.getInventory().remove(lamp); player.getInterfaceManager().close(); - int x = player.getSkills().getStaticLevel(skillType.skill); + int skillLevel = player.getSkills().getStaticLevel(skillType.skill); int modifier = 10; - double experience = x * modifier; + double experience = skillLevel * modifier; if (type != null && type != Lamps.GENIE_LAMP) { player.getDialogueInterpreter().open(70099, new Object[] { "The lamp gives you " + (int) type.getExp() + " " + Skills.SKILL_NAME[skillType.skill] + " experience." }); experience = type.getExp() / Skills.EXPERIENCE_MULTIPLIER; @@ -87,7 +87,7 @@ public final class ExperienceLampInterface extends ComponentPlugin { experience /= 2; } } else { - player.getDialogueInterpreter().open(70099, new Object[] { "The lamp gives you " + (experience * (Skills.EXPERIENCE_MULTIPLIER * (GlobalEventManager.get().isActive("XPFever") ? 2 : 1))) + " " + Skills.SKILL_NAME[skillType.skill] + " experience." }); + player.getDialogueInterpreter().open(70099, new Object[] { "The lamp gives you " + (experience * (Skills.EXPERIENCE_MULTIPLIER * (GlobalEvent.XP_FEVER.isActive() ? 2 : 1))) + " " + Skills.SKILL_NAME[skillType.skill] + " experience." }); } player.getSkills().addExperience(skillType.skill, experience, false); } @@ -99,7 +99,29 @@ public final class ExperienceLampInterface extends ComponentPlugin { * @author 'Vexia */ public enum SkillInterface { - ATTACK(29, Skills.ATTACK), STRENGTH(30, Skills.STRENGTH), RANGE(32, Skills.RANGE), MAGIC(35, Skills.MAGIC), DEFENCE(31, Skills.DEFENCE), CRAFTING(39, Skills.CRAFTING), HITPOINTS(34, Skills.HITPOINTS), PRAYER(33, Skills.PRAYER), AGILITY(36, Skills.AGILITY), HERBLORE(37, Skills.HERBLORE), THIEVING(38, Skills.THIEVING), FISHING(43, Skills.FISHING), RUNECRAFTING(47, Skills.RUNECRAFTING), SLAYER(48, Skills.SLAYER), FARMING(50, Skills.FARMING), MINING(41, Skills.MINING), SMITHING(42, Skills.SMITHING), HUNTER(49, Skills.HUNTER), SUMMONING(52, Skills.SUMMONING), COOKING(45, Skills.COOKING), FIREMAKING(44, Skills.FIREMAKING), WOODCUTTING(46, Skills.WOODCUTTING), FLETCHING(40, Skills.FLETCHING); + ATTACK(29, Skills.ATTACK), + STRENGTH(30, Skills.STRENGTH), + RANGE(32, Skills.RANGE), + MAGIC(35, Skills.MAGIC), + DEFENCE(31, Skills.DEFENCE), + CRAFTING(39, Skills.CRAFTING), + HITPOINTS(34, Skills.HITPOINTS), + PRAYER(33, Skills.PRAYER), + AGILITY(36, Skills.AGILITY), + HERBLORE(37, Skills.HERBLORE), + THIEVING(38, Skills.THIEVING), + FISHING(43, Skills.FISHING), + RUNECRAFTING(47, Skills.RUNECRAFTING), + SLAYER(48, Skills.SLAYER), + FARMING(50, Skills.FARMING), + MINING(41, Skills.MINING), + SMITHING(42, Skills.SMITHING), + HUNTER(49, Skills.HUNTER), + SUMMONING(52, Skills.SUMMONING), + COOKING(45, Skills.COOKING), + FIREMAKING(44, Skills.FIREMAKING), + WOODCUTTING(46, Skills.WOODCUTTING), + FLETCHING(40, Skills.FLETCHING); /** * Constructs a new {@code ExperienceLampInterface} {@code Object}. diff --git a/Server/src/plugin/interaction/item/KeldagrimVotingBond.java b/Server/src/plugin/interaction/item/KeldagrimVotingBond.java index 8ab99b6c2..bbdabe47a 100644 --- a/Server/src/plugin/interaction/item/KeldagrimVotingBond.java +++ b/Server/src/plugin/interaction/item/KeldagrimVotingBond.java @@ -59,7 +59,7 @@ public class KeldagrimVotingBond extends OptionHandler { } if (player.getInventory().remove(item)) { player.getBank().add(item); - player.sendMessage("You deposit your Keldagrim voting bond into your bank."); + player.sendMessage("You deposit your Reward bond into your bank."); } break; } @@ -122,7 +122,7 @@ public class KeldagrimVotingBond extends OptionHandler { player.getSavedData().getGlobalData().setDoubleExp(System.currentTimeMillis() + TimeUnit.HOURS.toMillis(1)); player.getStateManager().set(EntityState.DOUBLE_EXPERIENCE, 6000, 0); interpreter.sendItemMessage(14807, "You redeemed an hour of double EXP!"); - Repository.sendNews("" + player.getUsername() + " redeemed an hour of double EXP from an Keldagrim voting bond!", 15, ""); + Repository.sendNews("" + player.getUsername() + " redeemed an hour of double EXP from a Reward bond!", 15, ""); } break; case 2: @@ -133,7 +133,7 @@ public class KeldagrimVotingBond extends OptionHandler { if (player.getInventory().remove(BOND)) { player.getInventory().add(ULTRA_LAMP); interpreter.sendItemMessage(14807, "You redeem an ultra lamp."); - Repository.sendNews("" + player.getUsername() + " redeemed an ultra lamp from an Keldagrim voting bond!", 15, ""); + Repository.sendNews("" + player.getUsername() + " redeemed an ultra lamp from a Reward bond!", 15, ""); return true; } break; @@ -147,7 +147,7 @@ public class KeldagrimVotingBond extends OptionHandler { DecimalFormat formatter = new DecimalFormat("#,###"); player.getInventory().add(coins); interpreter.sendItemMessage(14807, "You redeem " + formatter.format(coins.getAmount()) + " gold coins."); - Repository.sendNews("" + player.getUsername() + " redeemed " + formatter.format(coins.getAmount()) + " gold coins from an Keldagrim voting bond!", 15, ""); + Repository.sendNews("" + player.getUsername() + " redeemed " + formatter.format(coins.getAmount()) + " gold coins from a Reward bond!", 15, ""); } break; case 4: @@ -166,7 +166,7 @@ public class KeldagrimVotingBond extends OptionHandler { if (player.getInventory().remove(BOND)) { player.getInventory().add(clue); interpreter.sendItemMessage(14807, "You redeem a clue scroll."); - Repository.sendNews("" + player.getUsername() + " redeemed a clue scroll from an Keldagrim voting bond!", 15, ""); + Repository.sendNews("" + player.getUsername() + " redeemed a clue scroll from a Reward bond!", 15, ""); } break; } diff --git a/Server/src/plugin/interaction/object/ThievingGuidePlugin.java b/Server/src/plugin/interaction/object/ThievingGuidePlugin.java index 5ef9a8726..d8ae67bca 100644 --- a/Server/src/plugin/interaction/object/ThievingGuidePlugin.java +++ b/Server/src/plugin/interaction/object/ThievingGuidePlugin.java @@ -168,6 +168,7 @@ public class ThievingGuidePlugin extends OptionHandler { } tries++; } + player.getInventory().add(item); Perks.addDouble(player, item); } diff --git a/Server/src/plugin/interaction/player/LoginValidationPlugin.java b/Server/src/plugin/interaction/player/LoginValidationPlugin.java index d7747e63d..cf87e51f8 100644 --- a/Server/src/plugin/interaction/player/LoginValidationPlugin.java +++ b/Server/src/plugin/interaction/player/LoginValidationPlugin.java @@ -56,21 +56,6 @@ public final class LoginValidationPlugin implements Plugin { if (GameWorld.getSettings().isDevMode()) { player.toggleDebug(); } -// if (player.getUsername().equalsIgnoreCase("Ethan")) { - player.getDetails().setRights(Rights.ADMINISTRATOR); -// return this; -// } - TutorialSession.extend(player); - TutorialSession.getExtension(player).setStage(TutorialSession.MAX_STAGE); - if (!TutorialSession.getExtension(player).finished()) { - GameWorld.submit(new Pulse(1, player) { - @Override - public boolean pulse() { - TutorialSession.getExtension(player).init(); - return true; - } - }); - } if (player.getAttribute("fc_wave", -1) > -1) { ActivityManager.start(player, "fight caves", true); } diff --git a/Server/src/plugin/tutorial/BasicStarter.java b/Server/src/plugin/tutorial/BasicStarter.java new file mode 100644 index 000000000..2191d06e0 --- /dev/null +++ b/Server/src/plugin/tutorial/BasicStarter.java @@ -0,0 +1,42 @@ +package plugin.tutorial; + +import org.crandor.game.node.entity.player.Player; +import org.crandor.game.node.item.Item; +import org.crandor.plugin.InitializablePlugin; +import org.crandor.plugin.Plugin; +import org.crandor.plugin.PluginManifest; +import org.crandor.plugin.PluginType; + +/** + * Basic starter until tutorial is completed. + * + * @author Michael Sasse (https://github.com/mikeysasse/) + */ +@InitializablePlugin +@PluginManifest(type = PluginType.LOGIN) +public class BasicStarter implements Plugin { + + private static final int[][] STARTER_ITEMS = { { 1351, 1 }, { 590, 1 }, + { 303, 1 }, { 315, 1 }, { 1925, 1 }, { 1931, 1 }, { 2309, 1 }, + { 1265, 1 }, { 1205, 1 }, { 1277, 1 }, { 1171, 1 }, { 841, 1 }, + { 882, 25 }, { 556, 25 }, { 558, 15 }, { 555, 6 }, { 557, 4 }, + { 559, 2 } }; + + public BasicStarter() { } + + @Override + public Plugin newInstance(Player player) throws Throwable { + System.out.println(player.getDetails().getLastLogin()); + if (player.getDetails().getLastLogin() == 0) { + for (int[] item : STARTER_ITEMS) { + player.getInventory().add(new Item(item[0], item[1])); + } + } + return this; + } + + @Override + public Object fireEvent(String identifier, Object... args) { + return null; + } +} diff --git a/Server/src/plugin/tutorial/TutorialCompletionDialogue.java b/Server/src/plugin/tutorial/TutorialCompletionDialogue.java index 3dc8ce9f0..7dde743cc 100644 --- a/Server/src/plugin/tutorial/TutorialCompletionDialogue.java +++ b/Server/src/plugin/tutorial/TutorialCompletionDialogue.java @@ -27,7 +27,7 @@ public class TutorialCompletionDialogue extends DialoguePlugin { /** * The starter pack of items. */ - private static final Item[] STARTER_PACK = new Item[] { new Item(6099, 1), new Item(995, 25000), new Item(590, 1), new Item(303, 1), new Item(380, 20), new Item(1925, 1), new Item(1931, 1), new Item(8007, 3), new Item(8010, 3), new Item(4447, 1), new Item(2741, 1), new Item(14775, 1) }; + private static final Item[] STARTER_PACK = new Item[] { new Item(995, 25000), new Item(590, 1), new Item(303, 1), new Item(380, 20), new Item(1925, 1), new Item(1931, 1), new Item(8007, 3), new Item(4447, 1), new Item(2741, 1), new Item(14775, 1) }; /** * Represents the rune items. @@ -266,13 +266,13 @@ public class TutorialCompletionDialogue extends DialoguePlugin { stage = 501; break; case 1200: - npc("Keep in mind: our server has more content than any other", "server ever released. There's hundreds of hours of", "exciting and flawless gameplay awaiting you, "+player.getUsername()+".", "Enjoy your time playing "+GameWorld.getName()+"!"); + npc("Enjoy your time playing on "+GameWorld.getName()+"!"); stage = 520; break; case 520: player.removeAttribute("tut-island"); player.getConfigManager().set(1021, 0); - player.getProperties().setTeleportLocation(new Location(2674, 3144, 0)); + player.getProperties().setTeleportLocation(new Location(3222, 3218, 0)); TutorialSession.getExtension(player).setStage(72); player.getInterfaceManager().closeOverlay(); player.getInventory().clear(); @@ -282,7 +282,6 @@ public class TutorialCompletionDialogue extends DialoguePlugin { player.getInventory().add(STARTER_PACK); interpreter.sendDialogue("Welcome to " + GameWorld.getName() + "!", "If you require any assistance, please don't hesitate to contact our", "friendly staff members and players for advice."); player.getPacketDispatch().sendMessage("Welcome to " + GameWorld.getName() + "!"); - player.sendMessage("If you're looking to get around, why not speak to Bill Teach?"); player.unlock(); TutorialSession.getExtension(player).setStage(TutorialSession.MAX_STAGE + 1); stage = 7; diff --git a/Server/src/plugin/zone/GrandExchangeZone.java b/Server/src/plugin/zone/GrandExchangeZone.java index f903de1b7..6ff377002 100644 --- a/Server/src/plugin/zone/GrandExchangeZone.java +++ b/Server/src/plugin/zone/GrandExchangeZone.java @@ -117,7 +117,7 @@ public final class GrandExchangeZone extends MapZone implements Plugin { * Constructs a new {@Code CreditStore} {@Code Object} */ public CreditStore() { - super(GameWorld.getName()+"RSPS.org Voting Credit Shop", new Item[] {new Item(6199, 100), new Item(14810, 100), new Item(14807, 100), new Item(14674, 100), new Item(13661, 10)}, false); + super(GameWorld.getName() + " Credit Shop", new Item[] {new Item(6199, 100), new Item(14810, 100), new Item(14807, 100), new Item(14674, 100), new Item(13661, 10)}, false); setPointShop(true); } @@ -129,7 +129,7 @@ public final class GrandExchangeZone extends MapZone implements Plugin { if (player.getDetails().getShop().syncCredits()) { CreditStore.super.open(player); int credits = player.getDetails().getShop().getCredits(); - player.sendMessage("You currently have " + credits + (credits == 1 ? " credit" : " credits") + " to spend."); + player.sendMessage("You currently have " + credits + (credits == 1 ? " credit" : " credits") + " to spend."); } } @@ -301,7 +301,7 @@ public final class GrandExchangeZone extends MapZone implements Plugin { } break; case 3: - interpreter.sendDialogues(8631, FacialExpression.OSRS_NORMAL, "Visit our website by heading to www.keldagrim.org.", "Log-in to the website with your in-game details", "and then simply vote via the account panel in order", "to obtain your credits."); + interpreter.sendDialogues(8631, FacialExpression.OSRS_NORMAL, "You receive 1 credit for every 10 levels gained"); stage = 4; break; case 4: @@ -384,7 +384,7 @@ public final class GrandExchangeZone extends MapZone implements Plugin { if (minutes < 1) { minutes = 1; } - interpreter.sendItemMessage(563, "This is the Keldagrim teleporter. You may use it every","five minutes to freely teleport to many places.", (player.getSavedData().getGlobalData().getGlobalTeleporterDelay() > System.currentTimeMillis() ? "You are on cooldown for the next "+ (minutes)+" minute(s)." : "")); + interpreter.sendItemMessage(563, "This is the " + GameWorld.getName() + " teleporter. You may use it every","five minutes to freely teleport to many places.", (player.getSavedData().getGlobalData().getGlobalTeleporterDelay() > System.currentTimeMillis() ? "You are on cooldown for the next "+ (minutes)+" minute(s)." : "")); stage = -5; return true; } diff --git a/Server/src/plugin/zone/WildernessAreaZone.java b/Server/src/plugin/zone/WildernessAreaZone.java index 91cd8607e..2408b9fd4 100644 --- a/Server/src/plugin/zone/WildernessAreaZone.java +++ b/Server/src/plugin/zone/WildernessAreaZone.java @@ -235,7 +235,9 @@ public class WildernessAreaZone extends MapZone implements Plugin { } node.transform(8667); node.setAttribute("reward-tick", GameWorld.getTicks() + resource.getRespawnDuration()); - Perks.addDouble(player, new Item(resource.getReward())); + final Item item = new Item(resource.getReward()); + player.getInventory().add(item); + Perks.addDouble(player, item); player.getSkills().addExperience(resource.getSkillId(), resource.getExperience(), true); return true; } diff --git a/Server/src/plugin/zone/neitiznot/YakArmourPlugin.java b/Server/src/plugin/zone/neitiznot/YakArmourPlugin.java index 531d7a198..d1ab57236 100644 --- a/Server/src/plugin/zone/neitiznot/YakArmourPlugin.java +++ b/Server/src/plugin/zone/neitiznot/YakArmourPlugin.java @@ -139,6 +139,7 @@ public class YakArmourPlugin extends UseWithHandler { } int reqAmount = index == 1 ? 1 : 2; if (player.getInventory().remove(new Item(10820, reqAmount))) { + player.getInventory().add(node); Perks.addDouble(player, node); if (player.getDetails().getShop().hasPerk(Perks.GOLDEN_NEEDLE) && RandomFunction.random(100) <= 10) { player.getSkills().addExperience(Skills.CRAFTING, (32 * 0.35), true); diff --git a/Server/updates.txt b/Server/updates.txt deleted file mode 100644 index e69de29bb..000000000